/*
 Theme Name:   GeneratePress Child
 Template:     generatepress
*/

@import url('https://rsms.me/inter/inter.css'); /* or remove this line if self-hosting */

body, button, input, select, textarea,
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

/* Container box */

.pdooh-blog-wrapper {
	margin-top: 20px;
}

.pdooh-post-box {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: box-shadow .2s ease;
}

.pdooh-post-box:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Image wrapper */
.pdooh-thumb {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.pdooh-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-bottom: 1px solid #f1f1f1;
}

/* Content area */
.pdooh-content {
    padding: 15px;
}

/* Title */
.pdooh-title a {
    font-size: 18px;
    font-weight: 700; /* BOLD TITLE */
    color: #02533c;
    text-decoration: none;
}

.pdooh-title a:hover {
    color: #0073aa;
}

.pdooh-title {
    line-height: 18px !important;
}

/* Excerpt */
.pdooh-excerpt {
    color: #555;
    margin: 10px 0;
    font-size: 15px;
}

/* Read more */
.pdooh-readmore {
    display: inline-block;
    margin-top: 10px;
    color: #0073aa;
    font-weight: 600;
    text-decoration: none;
}

.pdooh-readmore:hover {
    text-decoration: underline;
	color: #02533c !important;
}

/* Grid layout */
.pdooh-post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Mobile */
@media(max-width: 768px){
    .pdooh-post-grid {
        grid-template-columns: 1fr;
    }
}

/* --- PDOOH RSS Widget Styles --- */

.pdooh-rss-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pdooh-rss-item {
    display: grid;
    grid-template-columns: 70px auto;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.pdooh-rss-thumb img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.pdooh-rss-title a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    text-decoration: none;
}

.pdooh-rss-title a:hover {
    text-decoration: underline;
}

.is-right-sidebar {
    width: 30% !important;
    margin-left: 20px !important;
}

.site-info {
    color: var(--base-3);
    background-color: #02533c;
    padding: 20px;
}