/* PGT Hero Section Widget */
.pgt-hero-section,
.pgt-hero-section * {
    box-sizing: border-box;
}

.pgt-hero-section {
    width: 100%;
    background: #ffffff;
    font-family: inherit;
    overflow: hidden;
}

.pgt-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 48px;
}

.pgt-hero-content {
    min-width: 0;
}

.pgt-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    color: #2f7423;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pgt-hero-eyebrow-icon {
    display: inline-flex;
    line-height: 1;
}

.pgt-hero-title {
    margin: 0 0 22px;
    color: #2e2e2e;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4.6vw, 56px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.6px;
}

.pgt-hero-title-highlight {
    color: #397c2c;
    display: inline;
}

.pgt-hero-description {
    max-width: 590px;
    margin: 0 0 42px;
    color: #425160;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
}

.pgt-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.pgt-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 47px;
    padding: 14px 26px;
    border-radius: 7px;
    border: none;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    box-shadow: none;
}

.pgt-hero-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.98);
}

.pgt-hero-btn-primary {
    background-color: #285f2c;
    color: #ffffff;
}

.pgt-hero-btn-primary:hover,
.pgt-hero-btn-primary:focus {
    color: #ffffff;
}

.pgt-hero-btn-secondary {
    background-color: #f6b900;
    color: #1a1a1a;
}

.pgt-hero-btn-secondary:hover,
.pgt-hero-btn-secondary:focus {
    color: #1a1a1a;
}

.pgt-hero-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pgt-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.pgt-hero-pill {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 18px;
    background-color: #ffffff;
    border: 1px solid #eef1ee;
    border-radius: 7px;
    color: #1b2d1c;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(33, 45, 34, 0.05);
}

.pgt-hero-pill-icon {
    color: #2f7423;
    line-height: 1;
}

.pgt-hero-image-area {
    min-width: 0;
}

.pgt-hero-image-wrap {
    width: 100%;
    height: 324px;
    overflow: hidden;
    background: #c7d1d8;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

@media (max-width: 1024px) {
    .pgt-hero-container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .pgt-hero-content {
        text-align: center;
    }

    .pgt-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .pgt-hero-buttons,
    .pgt-hero-pills {
        justify-content: center;
    }

    .pgt-hero-image-wrap {
        max-width: 700px;
        margin: 0 auto;
        height: 320px;
    }
}

@media (max-width: 767px) {
    .pgt-hero-title {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .pgt-hero-eyebrow {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .pgt-hero-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .pgt-hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 28px;
    }

    .pgt-hero-btn {
        width: 100%;
    }

    .pgt-hero-pills {
        gap: 10px;
    }

    .pgt-hero-pill {
        width: 100%;
    }

    .pgt-hero-image-wrap {
        height: 245px;
    }
}
