/*
Theme Name: Kimi V1.3
Theme URI: https://travelcommons.com
Description: Merge of Edited Kimi w/Podcast Archive Template 26-Jan 11:00pm
Author: Kimi AI
Author URI: https://travelcommons.com
Template: twentytwentyfive
Version: 1.3.1
Text Domain: twentytwentyfive-kimi-child-3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Custom styles for TravelCommons */

/* Site title and tagline styling */
.wp-block-site-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wp-block-site-tagline {
    font-size: 1.25rem;
    font-style: italic;
    color: #666;
}

/* Subscribe button styling */
.subscribe-cta {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f0f0;
    border-radius: 8px;
}

/* Navigation menu in upper right */
header .wp-block-navigation {
    justify-content: flex-end;
}

/* Post list with featured images */
.post-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.post-list-item .wp-block-post-featured-image {
    flex: 0 0 200px;
    margin-right: 2rem;
    margin-bottom: 0;
}

.post-list-item .wp-block-post-featured-image img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.post-list-item .post-content-wrapper {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .post-list-item {
        flex-direction: column;
    }
    
    .post-list-item .wp-block-post-featured-image {
        flex: 1;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .post-list-item .wp-block-post-featured-image img {
        width: 100%;
        height: auto;
    }
}

/* Podcast Archive Specific Styles */

/* Archive item hover effect */
.podcast-archive-item {
    transition: background-color 0.2s ease;
}

.podcast-archive-item:hover {
    background-color: #f9f9f9;
}

/* Featured image styling */
.podcast-archive-item .wp-block-post-featured-image img {
    transition: transform 0.3s ease;
}

.podcast-archive-item:hover .wp-block-post-featured-image img {
    transform: scale(1.02);
}

/* Episode number styling */
.episode-number {
    color: var(--wp--preset--color--contrast-2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Date styling */
.podcast-date {
    color: var(--wp--preset--color--contrast-2);
    white-space: nowrap;
}

/* Meta information layout */
.podcast-meta {
    margin-top: 1rem;
    gap: 1rem;
}

/* Pagination styling */
.wp-block-query-pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--wp--preset--color--contrast-3);
}

/* Responsive adjustments */
@media (max-width: 781px) {
    .podcast-archive-item .wp-block-columns {
        flex-direction: column;
    }
    
    .podcast-archive-item .wp-block-column:first-child {
        width: 100% !important;
        margin-bottom: 1rem;
    }
    
    .podcast-archive-item .wp-block-column:last-child {
        width: 100% !important;
    }
}