.pyh-hotels__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
}

.pyh-hotel__card {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    border: 1px solid var(--gray);
}

.pyh-hotel__card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--green);
}

.pyh-hotel__rating {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--orange);
    font-weight: 600;
    z-index: 2;
}

.pyh-hotel__image-wrapper {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid var(--gray);
}

.pyh-hotel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pyh-hotel__card:hover .pyh-hotel__image {
    transform: scale(1.05);
}

.pyh-hotel__name {
    position: absolute;
    bottom: 14px;
    left: 16px;
    background: rgba(36, 64, 49, 0.85);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--white);
    font-family: var(--font-title);
    z-index: 2;
}

.pyh-hotel__info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pyh-hotel__features {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--green);
}

.pyh-hotel__features span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pyh-hotel__btn {
    text-align: center;
}
.pyh-button__card {
    padding: 15px 30px;
}
.pyh-hotel__desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--green-dark);
    margin: .5rem 0;
    min-height: 92px;
    text-align: left;
}
.pyh-hotel__rating {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 2px;
    z-index: 2;
}

.pyh-hotel__rating .material-symbols-outlined {
    font-size: 20px;
    color: var(--orange);
    line-height: 1;
}
/**/
.pyh-testimonials {
    padding: 60px 0;
    background-color: var(--gray);
}

.pyh-testimonials__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.pyh-testimonials__intro {
    max-width: 60%;
}

.pyh-testimonials__subtitle {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--green-dark);
    margin-bottom: 0.4rem;
}

.pyh-testimonials__title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--green-dark);
    margin: 0;
}

.pyh-testimonials__controls {
    display: flex;
    gap: 10px;
}

.pyh-testimonials__btn {
    background-color: var(--green);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pyh-testimonials__btn:hover {
    background-color: var(--green-dark);
}

.pyh-testimonials__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    transition: all 0.4s ease;
}

.pyh-testimonials__item {
    background: var(--white);
    border: 1px solid var(--green);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.pyh-testimonials__icon {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 26px;
    color: var(--orange);
}

.pyh-testimonials__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.pyh-testimonials__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pyh-testimonials__author {
    font-weight: 600;
    color: var(--green);
}

.pyh-testimonials__rating .material-symbols-outlined {
    font-size: 18px;
    color: var(--orange);
}
.pyh-testimonials__list {
    position: relative;
}

.pyh-testimonials__list.fade-out {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.pyh-testimonials__list.fade-in {
    opacity: 1;
    transition: opacity 0.6s ease;
}
/**/
.pyh-guide {
    padding: 80px 0;
    background-color: var(--gray);
}

.pyh-guide__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.pyh-guide__subtitle {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.pyh-guide__title {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.pyh-guide__intro {
    font-size: 1.1rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

.pyh-guide__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pyh-guide__item {
    display: flex;
    align-items: flex-start;
    background-color: var(--white);
    padding: 20px;
    border-left: 5px solid var(--green);
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    transition: background 0.3s ease;
}

.pyh-guide__item:hover {
    background-color: #f5f5f5;
}

.pyh-guide__icon {
    font-size: 28px;
    color: var(--orange);
    margin-right: 16px;
    flex-shrink: 0;
}

.pyh-guide__content {
    font-size: 1rem;
    color: var(--green-dark);
    line-height: 1.6;
}

@media (max-width: 768px) {

    .pyh-testimonials__list {
        grid-template-columns: 1fr;
    }

    .pyh-testimonials__intro {
        max-width: 100%;
        margin-bottom: 20px;
    }
}
/**/
.pyh-review__item p {
    max-width: 80%;
}
.pyh-review__item p .pyh-icon {
    font-size: inherit;
    color: var(--orange);
}



  #guardScreen {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 99999;
    height: 100dvh;
    width: 100dvw;
    overflow-y: auto;
    background-color: #fcfcfc;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
  }
  #contentZone {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
  }
