/* InMuenchen Yellow Plugin Styles */

/* Global red links and red hover effects for all branchenbuch pages */
.yellow-listings-container a {
    color: #e53327 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.yellow-listings-container a:hover {
    color: #e53327 !important; /* Keep red on hover for links */
}

/* Button hover effects with red background */
.yellow-listings-container button:hover,
.yellow-listings-container .pagination-link:hover,
.yellow-listings-container .teaser-btn:hover,
.yellow-listings-container .mehr-infos-btn:hover,
.yellow-listings-container .minihomepage-button:hover {
    color: white !important; /* White text for contrast */
    background-color: #e53327 !important;
}

.yellow-listings-container {
    width: 100%;
    margin: 0;
    padding: 20px 10px;
}

/* Breadcrumb Navigation */
.yellow-listings-container .breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9em;
}

.yellow-listings-container .breadcrumb a {
    color: #e53327 !important;
    text-decoration: none;
}

.yellow-listings-container .breadcrumb a:hover {
    color: #e53327 !important;
}

.yellow-listings-container .breadcrumb .separator {
    color: #666;
    margin: 0 8px;
}

.yellow-listings-container .breadcrumb .current {
    color: #666;
}

/* Page Headers */
.yellow-listings-container .page-header {
    text-align: left;
    margin-bottom: 40px;
}

.yellow-listings-container .page-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.yellow-listings-container .page-description {
    font-size: 1.2em;
    color: #666;
}

/* Category Grid */
.yellow-listings-container .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.yellow-listings-container .category-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.category-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.yellow-listings-container .category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.yellow-listings-container .category-name {
    font-size: 1.3em;
    margin-bottom: 8px;
    color: #e53327;
}

.yellow-listings-container .category-count {
    color: #666;
    font-size: 0.9em;
}

/* Listings Grid - 3 Column Layout */
.yellow-listings-container .listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* 3-column grid for teasers and miniteasers */
.yellow-listings-container .listings-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Single column layout for regular listings */
.yellow-listings-container .listings-single-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

/* Regular listing cards in single column should be wider */
.listings-single-col .listing-card {
    max-width: 100%;
    width: 100%;
}

/* Section spacing */
.yellow-listings-container .listings-section {
    margin-bottom: 40px;
}

.listings-section:last-child {
    margin-bottom: 20px;
}

/* Base Card Styles */
.listing-card, .miniteaser-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    transition: box-shadow 0.3s ease;
    min-height: 140px; /* Minimum height for consistency */
    position: relative; /* For absolute positioned elements inside */
}

.yellow-listings-container .teaser-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0; /* No padding for teaser cards - image should be edge-to-edge */
    transition: box-shadow 0.3s ease;
    position: relative;
    height: fit-content;
}

.yellow-listings-container .listing-card:hover,
.yellow-listings-container .teaser-card:hover,
.yellow-listings-container .miniteaser-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.yellow-listings-container .listing-title {
    margin-bottom: 10px;
}

.yellow-listings-container .listing-title a {
    color: #e53327 !important;
    text-decoration: none;
}

.yellow-listings-container .listing-title a:hover {
    color: #e53327 !important;
}

.yellow-listings-container .listing-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.yellow-listings-container .listing-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

.yellow-listings-container .listing-city {
    color: #888;
}

.yellow-listings-container .listing-link {
    color: #e53327 !important;
    text-decoration: none;
    font-weight: 500;
}

.listing-link:hover {
    color: #e53327 !important;
}

/* Pagination */
.yellow-listings-container .pagination-wrapper {
    margin-top: 40px;
    text-align: center;
}

.yellow-listings-container .yellow-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.yellow-listings-container .pagination-link {
    display: inline-block;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    color: #e53327 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    background: #e53327 !important;
    border-color: #e53327 !important;
    color: white !important;
}

.yellow-listings-container .pagination-link.current {
    background: #e53327;
    color: white !important;
    border-color: #e53327;
}

.pagination-link.prev,
.yellow-listings-container .pagination-link.next {
    font-weight: 500;
}

/* Single Listing */
.yellow-listings-container .listing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    /* Removed margin-top: 30px for cleaner layout */
}

.yellow-listings-container .listing-details-box {
    margin-top: 20px;
}

.yellow-listings-container .listing-sidebar {
    background: #f8f9fa;
    padding: 20px;
    height: fit-content;
}

.listing-info h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

.yellow-listings-container .info-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.yellow-listings-container .category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.yellow-listings-container .category-tag {
    background: #e53327;
    color: white !important;
    padding: 4px 12px;
    text-decoration: none;
    font-size: 0.85em;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: #e53327 !important;
    color: white !important;
}

/* Empty States */
.no-categories,
.yellow-listings-container .no-listings {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px;
}

/* Teaser Card Styles */
.yellow-listings-container .teaser-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.yellow-listings-container .teaser-image {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 0;
    overflow: hidden;
    background: transparent; /* Remove grey background */
}

.yellow-listings-container .teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yellow-listings-container .teaser-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(135deg, #e53327 0%, #c42a1f 100%); /* Light to dark red gradient */
    color: white;
}

/* Red overlay banner at bottom for teasers - matching miniteaser style */
.yellow-listings-container .teaser-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(229, 51, 39, 0.9); /* Red background matching in-muenchen.de CI */
    color: white;
    padding: 0 16px;
    z-index: 2;
    height: 43px; /* 30% higher than 33px */
    display: flex;
    align-items: center;
}

.yellow-listings-container .teaser-overlay-title {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: white;
    line-height: 1.2;
}

.yellow-listings-container .teaser-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #f59e0b;
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3; /* Higher than overlay */
}

.yellow-listings-container .teaser-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px 20px 20px 20px; /* Top, right, bottom, left - add space below image */
}

.yellow-listings-container .teaser-category-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 500;
}

.yellow-listings-container .teaser-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    height: 48px; /* Fixed height for 2 rows */
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.yellow-listings-container .teaser-title a {
    color: #333;
    text-decoration: none;
}

.yellow-listings-container .teaser-title a:hover {
    color: #f59e0b;
}

.yellow-listings-container .teaser-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.yellow-listings-container .teaser-info {
    margin-bottom: 15px;
}

.teaser-address, .teaser-phone, .teaser-district, .teaser-info-field {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.yellow-listings-container .teaser-info-field {
    height: 63px; /* Fixed height for 3 rows */
    line-height: 1.4;
    overflow: hidden;
}

.teaser-info-field span:last-child {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Teaser sections with fixed spacing */
.yellow-listings-container .teaser-info-section {
    margin-bottom: 4px; /* Reduced from 15px to 4px (75% reduction) */
    min-height: 63px; /* Fixed space for info field */
}

.yellow-listings-container .teaser-contact {
    margin-bottom: 15px;
}

.yellow-listings-container .info-icon {
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.teaser-phone a {
    color: #666;
    text-decoration: none;
}

.teaser-phone a:hover {
    color: #f59e0b;
}

.yellow-listings-container .teaser-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
}

.teaser-rating .rating-stars {
    display: flex;
    gap: 3px;
}

.teaser-rating .star {
    font-size: 18px; /* 30% larger than 14px */
    color: #ddd;
}

.teaser-rating .star.filled {
    color: #e53327;
}

.teaser-rating .rating-text {
    font-size: 12px;
    color: #92400e;
    font-weight: 500;
}

/* Sort Context Number */
.yellow-listings-container .sort-context {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.1);
    color: #666;
    font-size: 11px;
    padding: 2px 6px;
    font-weight: 500;
    z-index: 10;
}

.yellow-listings-container .teaser-actions {
    margin-top: auto;
    text-align: right;
}

.yellow-listings-container .teaser-btn {
    display: inline-block;
    width: auto; /* Changed from 100% to auto for smaller button */
    padding: 8px 16px; /* Reduced padding from 12px to 8px */
    background: #f8f9fa; /* Changed to subtle gray background */
    color: #6b7280; /* Muted text color */
    text-decoration: none;
    border: 1px solid #e5e7eb; /* Added subtle border */
    border-radius: 0; /* Sharp corners */
    font-size: 13px; /* Reduced font size */
    font-weight: 500; /* Reduced font weight */
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: none; /* Removed prominent shadow */
}

.teaser-btn:hover {
    background: #e53327 !important; /* Red hover background */
    color: white !important; /* White text on red */
    border-color: #e53327 !important; /* Red border */
    transform: none; /* Removed transform for subtlety */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* Very subtle shadow */
}

/* Mini-Teaser Card Styles */
.yellow-listings-container .miniteaser-card {
    border: 1px solid #cbd5e1;
    background: #fff;
    padding: 0; /* Remove padding for full-width image */
}

.yellow-listings-container .miniteaser-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.yellow-listings-container .miniteaser-image-container {
    position: relative;
    width: 100%;
    height: 200px; /* Increased height for better proportions */
    overflow: hidden;
}

.yellow-listings-container .miniteaser-image {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}

.miniteaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yellow-listings-container .miniteaser-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
}

/* Red overlay banner at bottom - matching in-muenchen.de CI */
.yellow-listings-container .miniteaser-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(229, 51, 39, 0.9); /* Red background matching in-muenchen.de CI */
    color: white;
    padding: 0 16px;
    z-index: 2;
    height: 43px; /* 30% higher than 33px */
    display: flex;
    align-items: center;
}

.yellow-listings-container .miniteaser-title {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: white;
    line-height: 1.2;
}

.miniteaser-title a {
    color: white;
    text-decoration: none;
}

.miniteaser-title a:hover {
    color: #e6f3ff;
}

/* Metallic Border Gradients for Product Types */
.yellow-listings-container .border-gold {
    border-left: 4px solid transparent;
    position: relative;
}

.yellow-listings-container .border-gold::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffd700 100%);
    z-index: 1;
}

.yellow-listings-container .border-silver {
    border-left: 4px solid transparent;
    position: relative;
}

.yellow-listings-container .border-silver::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #a8a8a8 100%);
    z-index: 1;
}

.yellow-listings-container .border-bronze {
    border-left: 4px solid transparent;
    position: relative;
}

.yellow-listings-container .border-bronze::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 30%, #8b4513 70%, #a0522d 100%);
    z-index: 1;
}

/* Regular Card Styles - Clean Vertical Layout */
.regular-card .listing-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Removed margin-top for cleaner layout */
}

.yellow-listings-container .regular-card-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative; /* For consistent positioning */
    height: 130px;
}

.yellow-listings-container .listing-logo-column {
    flex-shrink: 0;
    margin: 0 30px;
}

.listing-logo-column .listing-logo {
    width: 200px; /* Increased from 160px to 200px for more space */
    height: 100px; /* Increased from 80px to 100px */
    overflow: hidden;
    background: transparent; /* Remove grey background for premium cards */
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-logo-column .listing-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed to contain to fit all logo sizes properly */
}

.listing-logo-column .logo-placeholder {
    width: 200px; /* Increased from 160px to 200px */
    height: 100px; /* Increased from 80px to 100px */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.yellow-listings-container .listing-info-column {
    flex: 1;
    min-width: 0;
}

.listing-info-column .listing-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.listing-info-column .listing-title a {
    color: #333;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.listing-info-column .listing-title a:hover {
    color: #e53327 !important;
}

.listing-info-column .listing-name {
    font-size: 16px; /* Reduced from 18px to 17px */
    font-weight: 400;
    line-height: 1.3;
}

.listing-info-column .listing-description-line {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    max-height: 2.8em; /* Limit to 2 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.listing-info-column .listing-title a:hover .listing-description-line {
    color: #666; /* Keep description grey on hover */
}

.listing-info-column .listing-address {
    color: #666;
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.listing-info-column .listing-phone {
    color: #666;
    font-size: 14px;
    margin-top: 8px; /* Add space above phone number */
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing-info-column .listing-phone .phone-label {
    color: #666;
    font-weight: normal;
}

.listing-info-column .listing-phone a {
    color: #666;
    text-decoration: none;
    font-weight: normal;
}

.listing-info-column .listing-phone a:hover {
    color: #666 !important; /* Keep phone number grey, not red */
}

/* Keywords column for premium products */
.yellow-listings-container .listing-keywords-column {
    flex-shrink: 0;
    width: 228px;
    margin-left: 15px;
    align-self: flex-start; /* Align to top for consistent positioning */
}

/* Actions column for all products */
.yellow-listings-container .listing-actions-column {
    flex-shrink: 0;
    width: 150px;
    margin-left: 15px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.yellow-listings-container .keywords-list {
    text-align: left; /* Left-aligned keywords */
}

.yellow-listings-container .keywords-link {
    color: #374151;
    font-size: 13px; /* Increased from 12px to 13px */
    line-height: 1.3;
    text-decoration: none;
    display: block;
    max-width: 100%;
}

.yellow-listings-container .keywords-link:hover {
    color: #e53327 !important;
    text-decoration: underline;
}

.yellow-listings-container .keyword-item {
    padding: 2px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Category and district below contact links */
.yellow-listings-container .listing-category-district-bottom {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
    font-style: italic;
}

/* Contact links for premium products */
.yellow-listings-container .listing-contact-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.yellow-listings-container .contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.yellow-listings-container .contact-icon {
    font-size: 13px; /* Same height as text */
    line-height: 1;
    color: inherit; /* Same color as text */
}

.yellow-listings-container .contact-label {
    color: #666;
    text-decoration: none;
}

.yellow-listings-container .contact-link:hover {
    color: #e53327;
}

.yellow-listings-container .contact-link:hover .contact-label {
    color: #e53327;
}

.yellow-listings-container .regular-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
    min-height: 40px; /* Ensure consistent height */
}

.yellow-listings-container .listing-category-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.yellow-listings-container .listing-category-district {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    font-size: 13px;
    color: #64748b;
}

.yellow-listings-container .listing-rating-info {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px; /* Reserve space for rating + count up to 9999 */
    justify-content: flex-end;
}

.yellow-listings-container .listing-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 0;
    white-space: nowrap; /* Prevent wrapping of rating text */
}

.yellow-listings-container .rating-stars {
    display: flex;
    gap: 1px;
}

.rating-stars .star {
    font-size: 14px;
    color: #d1d5db;
}

.rating-stars .star.filled {
    color: #e53327;
}

.yellow-listings-container .rating-text {
    font-size: 12px;
    color: #92400e;
    font-weight: 500;
    margin-left: 4px;
}

.yellow-listings-container .listing-actions {
    flex-shrink: 0;
}

.yellow-listings-container .mehr-infos-btn {
    display: inline-block;
    padding: 10px 16px;
    background: linear-gradient(135deg, #e53327 0%, #c42a1f 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 0; /* Sharp corners */
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(229, 51, 39, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mehr-infos-btn:hover {
    background: #c42a1f !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(196, 42, 31, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .yellow-listings-container .listings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .yellow-listings-container .regular-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .yellow-listings-container .listing-rating-info {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .yellow-listings-container {
        padding: 15px 10px;
    }

    .yellow-listings-container .categories-grid {
        grid-template-columns: 1fr;
    }

    .yellow-listings-container .listings-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .yellow-listings-container .regular-card-header {
        gap: 10px;
    }

    .listing-logo-column .listing-logo,
    .listing-logo-column .logo-placeholder {
        width: 150px; /* Increased for mobile */
        height: 75px; /* Increased for mobile */
        font-size: 16px;
    }

    .listing-info-column .listing-title {
        font-size: 16px;
    }

    .listing-info-column .listing-address,
    .listing-info-column .listing-phone {
        font-size: 13px;
    }

    .yellow-listings-container .listing-keywords-column {
        display: none; /* Hide keywords on mobile to give full width to name/address */
    }

    .yellow-listings-container .listing-actions-column {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .yellow-listings-container .listing-contact-links {
        flex-direction: row;
        gap: 15px;
    }

    .yellow-listings-container .keyword-item {
        font-size: 11px;
        padding: 1px 0; /* Reduced padding to match new design */
    }

    .yellow-listings-container .regular-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .yellow-listings-container .listing-rating-info {
        justify-content: space-between;
        align-items: center;
    }

    .yellow-listings-container .page-title {
        font-size: 2em;
    }

    .yellow-listings-container .listing-title {
        font-size: 1.8em;
    }

    .yellow-listings-container .yellow-pagination {
        flex-wrap: wrap;
    }

    .yellow-listings-container .teaser-image {
        height: 150px;
    }

    .yellow-listings-container .miniteaser-image {
        height: 120px;
    }

    /* Mobile responsive for new layout classes */
    .yellow-listings-container .listings-grid-3col {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .yellow-listings-container .listings-single-col {
        gap: 10px;
    }
}
