/**
 * Kolkata Durga Puja Theme - Custom CSS
 *
 * Additional custom styles
 *
 * @package KolkataDurgaPuja
 */

/* ================================
   Additional Decorative Elements
   ================================ */

/* Ornate border decoration for sections */
.section::before,
.section::after {
    content: '❧';
    position: absolute;
    font-size: 20px;
    color: var(--color-secondary);
}

.section::before {
    top: 8px;
    left: 8px;
}

.section::after {
    bottom: 8px;
    right: 8px;
    transform: rotate(180deg);
}

/* Decorative heading underline */
.section-title.decorative::after {
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary), transparent);
    margin-top: 8px;
}

/* ================================
   Recent Committees Cards Section
   ================================ */
.recent-committees-section {
    margin-bottom: var(--spacing-xl);
}

.recent-committees-section .section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* Committee Card */
.committee-card {
    background: var(--color-background);
    border: 2px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.committee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--color-secondary);
}

/* Card Image */
.committee-card-image {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.committee-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.committee-card:hover .committee-card-image img {
    transform: scale(1.1);
}

.committee-card-image .no-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-background-dark), var(--color-background));
    border-bottom: 2px dashed var(--color-border);
}

.no-thumbnail-icon {
    font-size: 40px;
    margin-bottom: 8px;
}

.no-thumbnail-text {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Year Badge */
.committee-year-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text-light);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid var(--color-border);
}

/* Card Content */
.committee-card-content {
    padding: 15px;
}

.committee-card-title {
    font-size: 15px;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.committee-card-title a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.committee-card-title a:hover {
    color: var(--color-secondary);
}

/* Card Meta */
.committee-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.committee-card-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    padding: 3px 8px;
    background: var(--color-background-dark);
    border-radius: 3px;
    border-left: 3px solid var(--color-secondary);
}

.committee-card-meta .meta-item.locality {
    border-left-color: var(--color-primary);
}

.committee-card-meta .meta-item.type {
    border-left-color: var(--color-secondary);
}

.committee-card-meta .meta-item.pincode {
    border-left-color: var(--color-orange);
}

.committee-card-meta .meta-icon {
    font-size: 12px;
}

/* Card Address */
.committee-card-address {
    font-size: 11px;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
    line-height: 1.4;
    font-style: italic;
}

/* Card Link */
.committee-card-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    padding: 6px 12px;
    background: linear-gradient(to right, var(--color-background-dark), transparent);
    border-left: 3px solid var(--color-secondary);
    transition: all 0.2s ease;
}

.committee-card-link:hover {
    color: var(--color-secondary);
    background: linear-gradient(to right, var(--color-secondary-light), transparent);
    padding-left: 16px;
}

/* View All Button */
.view-all-committees {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: linear-gradient(to bottom, var(--color-secondary), var(--color-secondary-light));
    color: var(--color-primary-dark);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Committee Cards */
@media screen and (max-width: 768px) {
    .committees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .committee-card-image {
        height: 130px;
    }
    
    .committee-card-title {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .committees-grid {
        grid-template-columns: 1fr;
    }
    
    .committee-card-image {
        height: 180px;
    }
}

/* ================================
   Menu Toggle (Mobile)
   ================================ */
.menu-toggle {
    display: none;
    background: var(--color-secondary);
    border: none;
    color: var(--color-primary-dark);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-toggle:hover {
    background: var(--color-secondary-light);
}

/* ================================
   Logged In Message
   ================================ */
.logged-in-message {
    color: var(--color-text-light);
    font-size: 12px;
}

.logged-in-message a {
    color: var(--color-secondary);
    margin-left: 12px;
    text-decoration: underline;
}

/* ================================
   Parikrama Item Expanded State
   ================================ */
.parikrama-item.expanded p {
    max-height: none;
}

/* ================================
   Quick Links List Enhancement
   ================================ */
.quick-links-list li:nth-child(odd) {
    background-color: rgba(218, 165, 32, 0.05);
}

.quick-links-list li:hover {
    background-color: rgba(218, 165, 32, 0.15);
}

/* ================================
   Sidebar Widget Enhancement
   ================================ */
.sidebar-widget {
    position: relative;
    overflow: hidden;
}

.sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary), var(--color-primary));
}

/* ================================
   Banner Widget Enhancement
   ================================ */
.banner-widget {
    padding: 0;
    border: none;
}

.banner-widget::before {
    display: none;
}

.banner-widget a {
    display: block;
    position: relative;
}

.banner-widget a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--color-border);
    pointer-events: none;
}

/* ================================
   Gallery Strip Enhancement
   ================================ */
.gallery-images {
    position: relative;
}

.gallery-images::before,
.gallery-images::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-secondary);
    font-size: 16px;
}

.gallery-images::before {
    left: -20px;
}

.gallery-images::after {
    right: -20px;
}

/* ================================
   Footer Enhancement
   ================================ */
.site-footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--color-secondary), transparent);
    margin-bottom: 16px;
}

/* ================================
   Form Elements Enhancement
   ================================ */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-secondary) !important;
    box-shadow: 0 0 4px rgba(218, 165, 32, 0.4);
}

/* ================================
   Button Enhancement
   ================================ */
button,
.btn-submit,
.btn-search {
    position: relative;
    overflow: hidden;
}

button::after,
.btn-submit::after,
.btn-search::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

button:hover::after,
.btn-submit:hover::after,
.btn-search:hover::after {
    left: 100%;
}

/* ================================
   Scrollbar Styling
   ================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-background);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

/* ================================
   Selection Styling
   ================================ */
::selection {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
}

::-moz-selection {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
}

/* ================================
   Print Styles
   ================================ */
@media print {
    .top-header,
    .main-navigation,
    .sidebar,
    .gallery-strip,
    .site-footer {
        display: none;
    }
    
    .site-content {
        max-width: 100%;
    }
    
    .content-area {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .section {
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}

/* ================================
   AJAX Search Styles
   ================================ */

/* Search Container */
.kdp-search-container {
    position: relative;
}

/* Search Row - Input + Button */
.kdp-search-row {
    display: flex;
    gap: 0;
    margin-bottom: 10px;
    position: relative;
}

.kdp-search-input {
    flex: 1;
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-border);
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    background-color: #fff;
    transition: all 0.2s ease;
}

.kdp-search-input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: none;
}

.kdp-search-input::placeholder {
    color: #999;
    font-style: italic;
}

/* Search Button */
.kdp-search-btn {
    flex-shrink: 0;
    padding: 12px 18px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-dark));
    border: 2px solid var(--color-border);
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kdp-search-btn:hover {
    background: linear-gradient(to bottom, var(--color-secondary), var(--color-secondary-light));
}

.kdp-search-btn .kdp-search-icon {
    font-size: 18px;
    color: var(--color-text-light);
    position: static;
    transform: none;
}

.kdp-search-btn:hover .kdp-search-icon {
    color: var(--color-primary-dark);
}

/* Loading indicator */
.kdp-search-loading {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

/* Old wrapper - kept for compatibility */
.kdp-search-input-wrapper {
    position: relative;
    margin-bottom: 8px;
    display: flex;
}

/* Filter Dropdowns */
.kdp-filter-dropdowns {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.kdp-filter-select {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    font-size: 11px;
    background-color: #fff;
    color: var(--color-text-primary);
    cursor: pointer;
}

.kdp-filter-select:focus {
    outline: none;
    border-color: var(--color-secondary);
}

/* Search Results Container */
.kdp-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 2px;
}

/* Individual Result Item */
.kdp-result-item {
    padding: 10px;
    border-bottom: 1px solid var(--color-background-dark);
    transition: background-color 0.15s ease;
}

.kdp-result-item:last-child {
    border-bottom: none;
}

.kdp-result-item:hover,
.kdp-result-item.kdp-selected {
    background-color: var(--color-background);
}

.kdp-result-link {
    display: flex;
    text-decoration: none !important;
    color: inherit;
}

.kdp-result-link:hover {
    text-decoration: none !important;
}

/* Result Thumbnail */
.kdp-result-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 1px solid var(--color-border);
    margin-right: 10px;
    flex-shrink: 0;
}

/* Result Content */
.kdp-result-content {
    flex: 1;
    min-width: 0;
}

.kdp-result-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.kdp-result-item:hover .kdp-result-title,
.kdp-result-item.kdp-selected .kdp-result-title {
    color: var(--color-secondary);
}

.kdp-result-meta {
    font-size: 10px;
    color: var(--color-text-secondary);
    margin-bottom: 3px;
}

.kdp-meta-item {
    display: inline-block;
    margin-right: 8px;
}

.kdp-meta-item strong {
    color: var(--color-text-primary);
}

.kdp-result-address {
    font-size: 10px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* No Results Message */
.kdp-no-results {
    padding: 15px;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 12px;
    font-style: italic;
}

/* Loading State */
.kdp-search-loading img {
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Search Widget Specific */
.kdp-search-widget {
    position: relative;
    overflow: visible;
}

/* Highlight matched text */
.kdp-highlight {
    background-color: var(--color-secondary-light);
    padding: 0 2px;
    border-radius: 2px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .kdp-search-results {
        position: fixed;
        left: 10px;
        right: 10px;
        top: auto;
        max-height: 50vh;
    }
    
    .kdp-result-thumb {
        width: 40px;
        height: 40px;
    }
    
    .kdp-result-title {
        font-size: 12px;
    }
}

/* CSS Spinner for Loading */
.kdp-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-border);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: kdp-spin 0.8s linear infinite;
}

@keyframes kdp-spin {
    to { transform: rotate(360deg); }
}

/* ================================
   Single Puja Committee Page Styles
   ================================ */

/* Committee Header */
.committee-header {
    margin-bottom: 20px;
}

.committee-header .section-title {
    margin-bottom: 10px;
}

/* Committee Taxonomy Tags */
.committee-taxonomies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.committee-meta-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--color-background-dark);
    border: 1px solid var(--color-border);
    border-radius: 3px;
    font-size: 11px;
    color: var(--color-text-secondary);
}

.committee-meta-tag strong {
    color: var(--color-primary);
}

.committee-meta-tag.locality {
    background: linear-gradient(to right, var(--color-background-dark), #fff);
    border-left: 3px solid var(--color-primary);
}

.committee-meta-tag.type {
    background: linear-gradient(to right, var(--color-background-dark), #fff);
    border-left: 3px solid var(--color-secondary);
}

.committee-meta-tag.pincode {
    background: linear-gradient(to right, var(--color-background-dark), #fff);
    border-left: 3px solid var(--color-orange);
}

/* Committee Featured Image */
.committee-featured-image {
    margin-bottom: 20px;
    border: 3px solid var(--color-border);
    overflow: hidden;
}

.committee-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Committee Content */
.committee-content {
    margin-bottom: 20px;
    line-height: 1.7;
}

.committee-content p {
    margin-bottom: 12px;
    text-align: justify;
}

/* Committee Details Box */
.committee-details-box {
    background: var(--color-background-dark);
    border: 2px solid var(--color-border);
    padding: 15px;
    margin-bottom: 20px;
}

.committee-details-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-secondary);
    font-size: 16px;
    color: var(--color-primary);
}

.committee-details-table {
    width: 100%;
    border-collapse: collapse;
}

.committee-details-table th,
.committee-details-table td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px dashed var(--color-border);
    vertical-align: top;
}

.committee-details-table th {
    width: 100px;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 12px;
}

.committee-details-table td {
    font-size: 13px;
}

.committee-details-table tr:last-child th,
.committee-details-table tr:last-child td {
    border-bottom: none;
}

.committee-details-table a {
    color: var(--color-primary);
    text-decoration: none;
}

.committee-details-table a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Committee Gallery */
.committee-gallery {
    margin-bottom: 20px;
}

.committee-gallery h3 {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-secondary);
}

.committee-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.committee-gallery .gallery-item {
    border: 2px solid var(--color-border);
    overflow: hidden;
}

.committee-gallery .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.committee-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

/* Committee Navigation */
.committee-navigation {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid var(--color-border);
}

.committee-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.committee-navigation a {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.committee-navigation a:hover {
    background: linear-gradient(to bottom, var(--color-secondary), var(--color-secondary-light));
    color: var(--color-primary-dark);
}

.committee-navigation .nav-arrow {
    font-size: 14px;
    margin: 0 5px;
}

.committee-navigation .nav-prev {
    margin-right: auto;
}

.committee-navigation .nav-next {
    margin-left: auto;
}

/* Archive Puja Committee */
.archive .committee-archive-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--color-background);
    border: 2px solid var(--color-border);
    margin-bottom: 15px;
}

.archive .committee-archive-item .thumbnail {
    flex: 0 0 100px;
    width: 100px;
    height: 80px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.archive .committee-archive-item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive .committee-archive-item .content {
    flex: 1;
}

.archive .committee-archive-item h2 {
    font-size: 16px;
    margin-bottom: 5px;
}

.archive .committee-archive-item h2 a {
    color: var(--color-primary);
    text-decoration: none;
}

.archive .committee-archive-item h2 a:hover {
    color: var(--color-secondary);
}

.archive .committee-archive-item .excerpt {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-bottom: 5px;
}

.archive .committee-archive-item .meta {
    font-size: 10px;
    color: #888;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .committee-taxonomies {
        flex-direction: column;
        gap: 5px;
    }
    
    .committee-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .committee-navigation .nav-links {
        flex-direction: column;
    }
    
    .committee-navigation a {
        text-align: center;
        justify-content: center;
    }
}

/* Archive Committee List */
.committee-archive-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.committee-archive-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--color-background);
    border: 2px solid var(--color-border);
    transition: all 0.2s ease;
}

.committee-archive-item:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.committee-archive-item .thumbnail {
    flex: 0 0 100px;
    width: 100px;
    height: 80px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.committee-archive-item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.committee-archive-item:hover .thumbnail img {
    transform: scale(1.1);
}

.committee-archive-item .content {
    flex: 1;
}

.committee-archive-item h2 {
    font-size: 16px;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.committee-archive-item h2 a {
    color: var(--color-primary);
    text-decoration: none;
}

.committee-archive-item h2 a:hover {
    color: var(--color-secondary);
}

.committee-archive-item .excerpt {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.committee-archive-item .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
}

.committee-archive-item .meta-item {
    color: var(--color-text-secondary);
}

.committee-archive-item .meta-item strong {
    color: var(--color-primary);
}

/* Pagination */
.committee-pagination {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid var(--color-border);
}

.committee-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.committee-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.committee-pagination .page-numbers:hover {
    background: var(--color-secondary);
    color: var(--color-primary-dark);
}

.committee-pagination .page-numbers.current {
    background: var(--color-primary);
    color: var(--color-text-light);
    border-color: var(--color-primary);
}

.committee-pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

/* No Committees Message */
.no-committees {
    padding: 40px;
    text-align: center;
    color: var(--color-text-secondary);
    font-style: italic;
    background: var(--color-background);
    border: 2px dashed var(--color-border);
}

/* Responsive Archive */
@media screen and (max-width: 768px) {
    .committee-archive-item {
        flex-direction: column;
    }
    
    .committee-archive-item .thumbnail {
        width: 100%;
        height: 150px;
        flex: 0 0 auto;
    }
}

/* No Image Placeholder */
.thumbnail.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background-dark);
    border: 1px dashed var(--color-border);
}

.no-image-text {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}