/* Anniversary PR visitors: clear giving action and a compact founder/book feature. */
.th-home-page .th-button--gift {
    background: #f18721;
    border-color: #f18721;
    color: #003349;
}

.th-home-page .th-button--gift:hover {
    background: #ff9b3e;
    border-color: #ff9b3e;
    color: #003349;
}

.th-home-page .th-button:focus-visible {
    outline: 3px solid #003349;
    outline-offset: 4px;
}

.th-home-hero .th-button:focus-visible {
    outline-color: #fff;
}

.th-home-book {
    padding: 32px 0;
    background: #fff8ef;
    border-bottom: 1px solid #f2e3d1;
}

.th-home-book__inner {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: center;
    gap: clamp(24px, 4vw, 52px);
}

.th-home-book__images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.th-home-page .th-home-book__portrait {
    width: 178px;
    height: 190px;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 12px;
}

.th-home-page .th-home-book__cover {
    width: 128px;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    box-shadow: 0 8px 16px rgb(0 51 73 / 15%);
}

.th-home-book__copy h2 {
    color: #003349;
    font-size: clamp(25px, 2.6vw, 34px);
    line-height: 1.2;
    padding: 0;
    margin: 0 0 12px;
}

.th-home-book__body {
    font-size: 17px;
    line-height: 1.55;
    color: #264653;
    margin-bottom: 18px;
}

.th-home-book__body p:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.th-home-page .th-home-book__button {
    color: #fff;
    background: #003349;
    padding: 10px 20px;
}

.th-home-page .th-home-book__button:hover {
    background: #0d4a65;
}

@media (max-width: 800px) {
    .th-home-book__inner {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 24px;
    }
    .th-home-page .th-home-book__portrait {
        width: 140px;
        height: 160px;
    }
    .th-home-page .th-home-book__cover {
        width: 96px;
    }
}

@media (max-width: 600px) {
    .th-home-book {
        padding: 28px 0;
    }
    .th-home-book__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
    .th-home-book__images {
        justify-content: flex-start;
    }
    .th-home-page .th-home-book__portrait {
        height: 140px;
    }
    .th-home-page .th-home-book__cover {
        width: 90px;
        max-height: 140px;
    }
}
