.real-dogs-section {
    background-color: #E3FF71; /* Vibrant lime/yellow from the image */
    padding: 120px 8% 120px;
    text-align: center;
    width: 100%;
}

.real-dogs-header {
    margin-bottom: 90px;
}

.real-dogs-title {
    font-family: 'Rubik', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.real-dogs-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.real-dogs-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.real-dog-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 auto;
}

.real-dog-image-wrapper {
    width: var(--dog-width, 140px);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.real-dog-image {
    width: 100%;
    height: auto;
    display: block;
}

.real-dog-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .real-dogs-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .real-dogs-section {
        padding: 60px 7% 80px;
    }

    .real-dogs-title {
        font-size: 42px;
    }

    .real-dogs-grid {
        gap: 40px 20px;
    }

    .real-dog-item {
        width: 45%; /* Two per row on mobile for better visibility */
    }

    .real-dog-image-wrapper {
        width: var(--dog-width-mobile, 100px);
        margin-bottom: 10px;
    }

    .real-dog-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .real-dog-item {
        width: 100%; /* Single column on very small devices */
    }
}
