/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* ===== Header Layout Refinement ===== */

.site-header {
    background: #f5f6f8;
    border-bottom: 1px solid #e6e8eb;
}

/* Align logo + title nicely */
.site-branding {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ===== Logo Styling ===== */

.site-logo img {
    width: 52px;
    height: auto;
    border-radius: 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-logo img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* ===== Site Title ===== */

.main-title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #1f2933;
    margin: 0;
    line-height: 1.2;
}

/* ===== Professional Tagline ===== */

.main-title::after {
    content: "Decode Love. Understand Signals.";
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #9a6b78;
    letter-spacing: 0.8px;
    margin-top: 4px;
}


/* ===== Sidebar Base ===== */

.sidebar {
    padding-top: 10px;
}

/* Widget Card Style */
.sidebar .widget {
    background: #ffffff;
    padding: 22px;
    margin-bottom: 25px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sidebar .widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* ===== Widget Titles ===== */

.sidebar .widget h2,
.sidebar .wp-block-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2933;
    position: relative;
    padding-bottom: 8px;
}

/* Underline Accent */
.sidebar .widget h2::after,
.sidebar .wp-block-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #c06c84;
    border-radius: 2px;
}


/* ===== Search Box (Equal Height + Professional Alignment) ===== */

.wp-block-search {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.wp-block-search__input {
    flex: 1;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #e6e8eb;
    height: 42px;
}

.wp-block-search__input:focus {
    outline: none;
    border-color: #c06c84;
    box-shadow: 0 0 0 3px rgba(192, 108, 132, 0.15);
}

.wp-block-search__button {
    padding: 0 18px;
    border-radius: 6px;
    background: #c06c84;
    color: #fff;
    border: none;
    font-size: 14px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.wp-block-search__button:hover {
    background: #a5556c;
}


/* ===== Categories List ===== */

.wp-block-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-block-categories-list li {
    margin-bottom: 10px;
}

.wp-block-categories-list a {
    text-decoration: none;
    font-size: 14px;
    color: #374151;
    padding: 6px 10px;
    display: block;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.wp-block-categories-list a:hover {
    background: #f8e9ee;
    color: #c06c84;
}


/* ===== Post Meta Data ===== */

.entry-meta,
.post-meta {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.entry-meta a,
.post-meta a {
    color: #c06c84;
    text-decoration: none;
    font-weight: 500;
}

.entry-meta a:hover,
.post-meta a:hover {
    text-decoration: underline;
}

/* Add spacing between date and author */
.entry-meta span,
.post-meta span {
    margin-right: 6px;
}


.inside-article{
	border-radius:10px;
}
/* ===== Featured Image Rounded ===== */

.post-thumbnail img,
.wp-post-image {
    border-radius: 6px;
    overflow: hidden;
}

.footer-copy {
    font-size: 14px;
    color: #6b7280;
}