/* Toran Advisors - WordPress Twenty Twenty-Four Style */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #111111;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #325C80;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

a:hover {
    color: #1d3a52;
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    color: #111111;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.site-header {
    background: #ffffff;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    margin: 0;
    font-size: 28px;
}

.site-title a {
    color: #325C80;
    text-decoration: none;
}

.site-tagline {
    margin: 4px 0 0;
    color: #40464d;
    font-size: 14px;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #111111;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 4px 0;
}

.main-navigation a:hover {
    color: #325C80;
    text-decoration: none;
}

/* Content Area */
.site-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
}

/* Posts */
.post {
    margin-bottom: 50px;
}

.entry-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.entry-meta a {
    color: #325C80;
}

.entry-title {
    font-size: 30px;
    margin: 0 0 14px;
    line-height: 1.3;
}

.entry-title a {
    color: #111111;
    text-decoration: none;
}

.entry-title a:hover {
    color: #325C80;
}

.entry-content {
    line-height: 1.75;
    color: #333;
    font-size: 16px;
}

.entry-content p {
    margin: 0 0 16px;
}

.more-link {
    color: #325C80;
    font-weight: 600;
}

.entry-footer {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #888;
}

/* Sidebar */
.sidebar {
    font-size: 14px;
}

.widget {
    margin-bottom: 35px;
}

.widget-title {
    font-family: Georgia, serif;
    font-size: 18px;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #325C80;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #111111;
    text-decoration: none;
}

.widget a:hover {
    color: #325C80;
}

/* Search */
.search-form {
    display: flex;
}

.search-field {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #8c8f94;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}

.search-field:focus {
    border-color: #325C80;
    box-shadow: 0 0 0 1px #325C80;
}

.search-submit {
    padding: 8px 16px;
    background: #325C80;
    color: #fff;
    border: 1px solid #325C80;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
}

.search-submit:hover {
    background: #1d3a52;
    border-color: #1d3a52;
}

/* Pagination */
.pagination {
    margin-top: 30px;
    text-align: center;
}

.page-numbers {
    display: inline-block;
    padding: 5px 12px;
    margin: 0 3px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #325C80;
    text-decoration: none;
}

.page-numbers.current {
    background: #325C80;
    color: #fff;
    border-color: #325C80;
}

/* Footer */
.site-footer {
    border-top: 1px solid #e0e0e0;
    margin-top: 40px;
    padding: 30px 0;
    text-align: center;
    color: #666;
    font-size: 14px;
    background: #fafafa;
}

.site-footer a {
    color: #325C80;
}

/* Responsive */
@media screen and (max-width: 960px) {
    .site-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .header-inner {
        flex-direction: column;
        gap: 16px;
    }

    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media screen and (max-width: 600px) {
    .entry-title {
        font-size: 22px;
    }

    .site-content {
        padding: 0 16px;
    }
}
