.featured-book {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--light-navy);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.featured-book-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    max-height: 570px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-book-container img {
    width: auto;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    max-width: 100%;
}

.featured-book-container:hover img {
    transform: scale(1.05);
}

.featured-book-info {
    padding: 20px;
    margin-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-book-info h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--white);
}

.amazon-btn {
    background: #ff9900;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    text-align: center;
}

.amazon-btn:hover {
    background: #cc7a00;
}

@media (max-width: 768px) {
  .featured-book {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
  .featured-book-container {
        height: auto;
        max-height: none;
    }
}

@media (max-width: 768px) {
  .featured-book-container img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
  .featured-book-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
  .amazon-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 450px) {
  .featured-book-container {
        height: auto;
    }
}

@media (max-width: 450px) {
  .featured-book-info {
        margin-right: 0;
    }
}
