/* Font Face */
@font-face {
    font-family: 'Tilda Sans';
    src: url('../fonts/TildaSans-Regular/TildaSans-Regular.woff2') format('woff2'),
    url('../fonts/TildaSans-Regular/TildaSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Tilda Sans';
    src: url('../fonts/TildaSans-Bold/TildaSans-Bold.woff2') format('woff2'),
    url('../fonts/TildaSans-Bold/TildaSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tilda Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1A1A1A;
    line-height: 1.6;
}

/* Global Container Max Width */
.hero-container,
.about-container,
.materials-container,
.benefits-container,
.directions-container,
.cta-container,
.contacts-container {
    max-width: 1440px;
    margin: 0 auto;
}

/* Clouds Container */
.clouds-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5; /* Выше секций, но ниже контента */
    overflow: hidden;
}

.cloud {
    position: absolute;
    opacity: 0.8;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.cloud img {
    width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: transform 0.3s ease-in-out;
}

.header-hidden {
    transform: translateY(-100%);
}

.nav {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00BCD4;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(180deg, #F0F9FA 0%, #FFFFFF 100%);
    position: relative;
}

.hero-container {
    padding: 1rem 3rem;
    position: relative;
    z-index: 10;
}

/* First Row - Main Hero Content */
.hero-row-1 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: .5rem;
    margin-bottom: 3rem;
    align-items: end;
}

.hero-image-left {
    grid-column: span 4;
    display: flex;
    align-items: flex-end;
}

.hero-image-left img {
    width: 100%;
    height: auto;
}

.hero-content {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    align-self: center;
}

.hero-image-right {
    grid-column: span 4;
    display: flex;
    align-items: flex-end;
}

.hero-image-right img {
    width: 100%;
    height: auto;
}

.hero-date {
    display: inline-block;
    background: #00BCD4;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    width: fit-content;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #00BCD4;
}

.highlight-cyan {
    color: #03c7d5;
}

.hero-info-row {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1rem;
    width: 100%;
}

.info-item {
    display: grid;
    grid-template-columns: auto 1fr;
    /*gap: 0.5rem;*/
    align-items: center;
}

.info-item img {
    height: 25px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: center;
}

.hero-cta {
    margin-top: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #5A5A5A;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    transition: background 0.3s;
    text-align: center;
}

.btn-primary:hover {
    background: #4A4A4A;
}

/* Second Row - Cards Section */
.hero-row-2 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    padding: 0 10%;
}

.card {
    grid-column: span 4;
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4A4A4A;
}

.card-body {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.5rem;
    align-items: center;
}

.card-text {
    grid-column: span 9;
}

.card-icon {
    grid-column: span 3;
    width: 40px;
    height: 40px;
    justify-self: end;
}

/* About Conference Section */
.about-section {
    padding: 6rem 0;
    background: #dbfdff;
    position: relative;
}

.about-container {
    padding: 0 3rem;
    position: relative;
    z-index: 10;
}

.about-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    align-items: start;
}

.about-left {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: #1A1A1A;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1A1A1A;
    max-width: 90%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    color: #1A1A1A;
}

.stat-label {
    font-size: 1rem;
    color: #1A1A1A;
}

.about-right {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.archive-block {
    background: white;
    border: 2px solid #1A1A1A;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    width: 50%;
    box-sizing: border-box;
}

.archive-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
}

.archive-block p {
    font-size: 1rem;
    color: #1A1A1A;
    line-height: 1.5;
}

.bird-image {
    width: 30%;
    display: flex;
    justify-content: flex-end;
}

.bird-image img {
    width: 100%;
    height: auto;
}

/* Materials Section */
.materials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F9FA 100%);
    position: relative;
}

.materials-container {
    padding: 0 3rem;
    position: relative;
    z-index: 10;
}

.materials-header {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.materials-title {
    grid-column: span 5;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: #1A1A1A;
}

.materials-empty {
    grid-column: span 5;
}

.materials-telegram {
    grid-column: span 2;
    font-size: 1rem;
    color: #1A1A1A;
    text-align: right;
}

/* Masonry Grid System */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 1.5rem;
}

/* Base Tile Styles */
.tile {
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative; /* for overlays/logos */
    transition: transform 0.3s, box-shadow 0.3s;
}

.tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.tile-cyan:hover {
    box-shadow: none;
}

.tile-cyan:hover .tile-cyan-box {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.tile p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Tile Colors */
.tile-dark {
    background: #5A5A5A;
    color: white;
}

.tile-cyan {
    background: transparent;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    gap: 1rem;
}

.tile-cyan-box {
    background: #00BCD4;
    flex: 2;
    border-radius: 20px;
}

.tile-cyan p {
    background: transparent;
    color: #1A1A1A;
    padding: 0 1rem 1rem 1rem;
    border-radius: 0;
    margin: 0;
    text-align: left;
    flex: 1;
}

.tile-beige {
    background: #D4C5B0;
    color: #1A1A1A;
}

/* New Materials Tile Variants */
.tile-split {
    background: transparent;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    gap: 1rem;
}

.tile-image {
    flex: 2;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tile-text {
    flex: 1;
    padding: 0 1rem 1rem 1rem;
    text-align: left;
}

.tile-text p {
    margin: 0;
    color: #1A1A1A;
}

.tile-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    max-width: 80px;
    max-height: 40px;
    z-index: 3;
}

.tile-image-only {
    padding: 0;
    overflow: hidden;
}

.tile-image-full {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tile-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tile-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.25rem;
    color: #FFFFFF;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.75) 100%);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 2;
}

/* Tile Width Classes */
.tile-w2 {
    grid-column: span 2;
}

.tile-w3 {
    grid-column: span 3;
}

.tile-w4 {
    grid-column: span 4;
}

.tile-w5 {
    grid-column: span 5;
}

.tile-w6 {
    grid-column: span 6;
}

/* Tile Height Classes */
.tile-h1 {
    grid-row: span 1;
}

.tile-h2 {
    grid-row: span 2;
}

.tile-h3 {
    grid-row: span 3;
}

.tile-h4 {
    grid-row: span 4;
}

.tile-h5 {
    grid-row: span 5;
}

.tile-h6 {
    grid-row: span 6;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F0F9FA 0%, #FFFFFF 100%);
    position: relative;
}

.benefits-container {
    padding: 0 3rem;
    position: relative;
    z-index: 10;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    align-items: start;
}

.benefits-grid-wrapper {
    grid-column: span 9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /*grid-auto-rows: min-content; !* NEW *!*/
    /*grid-auto-rows: minmax(100px, auto);*/
    gap: 1.5rem;
}

/* Benefit Card Styles */
.benefit-card {
    background: #E0F7FA;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1A1A1A;
    margin: 0;
}

.benefit-placeholder {
    background: transparent;
}

.benefit-card-nobg {
    background: transparent;
}

/* Benefits Right Side */
.benefits-right {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: end;
}

.benefits-image {
    width: 100%;
    height: auto;
}

.benefits-list {
    width: 100%;
}

.benefits-list-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #1A1A1A;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1A1A1A;
    font-weight: bold;
}

/* Directions Section */
.directions-section {
    padding: 2rem 0;
    background: white;
    position: relative;
}

.directions-container {
    padding: 0 3rem;
    position: relative;
    z-index: 10;
}

.directions-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /*grid-auto-rows: 150px;*/
    gap: 1.5rem;
}

/* Direction Tile Styles */
.direction-tile {
    background: white;
    border: 2px solid #1A1A1A;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.direction-header {
    display: grid;
    grid-template-columns: 2fr 10fr;
    gap: 1rem;
    align-items: start;
}

.direction-number {
    font-size: 3rem;
    font-weight: 400;
    color: #03c7d5;
    line-height: 1;
}

.direction-title-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.3;
}

.direction-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1A1A1A;
    margin: 0;
}

.direction-grey {
    background: #808080; /* fallback color under image */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.direction-grey picture,
.direction-grey img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA Section */
.cta-section {
    background: #dbfdff;
    position: relative;
}

.cta-container {
    padding: 0 0 0 3rem;
    position: relative;
    z-index: 10;
}

.cta-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    align-items: center;
}

.cta-left {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1A1A1A;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cyan {
    background: #00BCD4;
}

.btn-cyan:hover {
    background: #00ACC1;
}

.btn-secondary {
    display: inline-block;
    background: #5A5A5A;
    color: white;
    padding: 1rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.3s;
    text-align: center;
}

.btn-secondary:hover {
    background: #4A4A4A;
}

.cta-right {
    grid-column: span 6;
}

.cta-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Contacts Section */
.contacts-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.contacts-container {
    padding: 0 3rem;
    position: relative;
    z-index: 10;
}

.contacts-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

.contacts-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 5rem 0 3rem 0;
    color: #1A1A1A;
}

.contacts-people-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: white;
    border: 2px solid #1A1A1A;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.contact-info {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 1rem;
    align-items: start;
}

.contact-avatar {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.contact-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1A1A1A;
    margin: 0;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.contact-links a {
    font-size: 0.95rem;
    color: #1A1A1A;
    text-decoration: none;
}

.contact-links a:hover {
    color: #00BCD4;
}

.info-channels-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.info-links {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-link-item {
    font-size: 1rem;
    line-height: 1.6;
    color: #1A1A1A;
    font-weight: 700;
}

.info-link-item strong {
    font-weight: 700;
}

.text-muted {
    color: #999999;
    font-weight: 400;
}

.info-location {
    grid-column: span 8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-grey {
    background: #808080 url('../images/address.webp') center / cover no-repeat;
    border-radius: 20px;
    height: 200px;
}

.location-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.location-address {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 2rem;
    align-items: center;
}

.location-address p {
    font-size: 1rem;
    line-height: 1.6;
    color: #1A1A1A;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-row-1 {
        grid-template-columns: 1fr;
    }

    .hero-image-left,
    .hero-content,
    .hero-image-right {
        grid-column: span 1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-info-row {
        grid-template-columns: 1fr;
    }

    .hero-row-2 {
        grid-template-columns: 1fr;
    }

    .card {
        grid-column: span 1;
    }

    .about-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-left,
    .about-right {
        grid-column: span 1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .archive-block {
        width: 100%;
    }

    .bird-image {
        width: 80%;
    }

    .materials-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .materials-title,
    .materials-empty,
    .materials-telegram {
        grid-column: span 1;
    }

    .materials-telegram {
        text-align: left;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .tile-w2,
    .tile-w3,
    .tile-w5 {
        grid-column: span 1;
    }

    .tile-h1,
    .tile-h2 {
        grid-row: span 1;
    }

    .benefits-row {
        grid-template-columns: 1fr;
    }

    .benefits-grid-wrapper,
    .benefits-right {
        grid-column: span 1;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid .tile-w2,
    .benefits-grid .tile-w3,
    .benefits-grid .tile-w4,
    .benefits-grid .tile-w5,
    .benefits-grid .tile-w6 {
        grid-column: span 1;
    }

    .benefits-grid .tile-h2,
    .benefits-grid .tile-h3,
    .benefits-grid .tile-h4,
    .benefits-grid .tile-h5,
    .benefits-grid .tile-h6 {
        grid-row: span 1;
    }

    .benefit-placeholder {
        display: none;
    }

    .directions-grid {
        grid-template-columns: 1fr;
    }

    .direction-grey {
        display: none;
    }

    .cta-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-left,
    .cta-right {
        grid-column: span 1;
    }

    .contacts-people-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-column: span 1;
    }

    .info-channels-row {
        grid-template-columns: 1fr;
    }

    .info-links,
    .info-location {
        grid-column: span 1;
    }

    .location-address {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-date {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }

    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .archive-block {
        padding: 1.5rem;
    }

    .archive-block h3 {
        font-size: 1.1rem;
    }

    .bird-image {
        width: 100%;
    }

    .materials-title {
        font-size: 1.75rem;
    }

    .tile {
        padding: 1.5rem;
    }

    .tile p {
        font-size: 0.95rem;
    }

    .benefits-title {
        font-size: 1.75rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .directions-title {
        font-size: 1.75rem;
    }

    .direction-tile {
        padding: 1.5rem;
    }

    .direction-number {
        font-size: 2rem;
    }

    .direction-title-text {
        font-size: 1.1rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .contacts-title,
    .contacts-subtitle {
        font-size: 1.75rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.25rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-avatar {
        max-width: 150px;
        margin: 0 auto;
    }

    .location-grey {
        height: 150px;
    }
}
