<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Single Post Styles
 *
 * Styles for single post display
 */

/* General Layout */
.site-main {
    padding-bottom: 60px;
}

/* Post Meta (Date and Badge) */
.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.post-date {
    font-size: 16px;
    color: #565E67;
    margin-right: 15px;
    font-weight: 500;
}

/* Post Title */
.post-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #595757;
    line-height: 1.4;
}

/* Social Share Buttons */
.post-share {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.share-link.facebook {
    background-color: #1877F2;
}

.share-link.line {
    background-color: #06C755;
}

.share-link.twitter {
    background-color: #000000;
}

.share-link:hover {
    opacity: 0.8;
    color: #fff;
}

/* Content Area */
.entry-content {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #595757;
    font-weight: 500;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.entry-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.entry-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.entry-content p {
    margin-bottom: 20px;
}

/* Navigation Buttons */
.post-navigation-buttons {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #E8E1D9;
}

.post-navigation-buttons a {
    display: inline-block;
    color: #565E67;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.post-navigation-buttons a:hover {
    color: #5AC3E1;
}

.button-paginate {
  background: #F8F2EC 0% 0% no-repeat padding-box;
  color: #595757 !important;
  border-radius: 30px;
  font-weight: 500;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
}

.back-to-list {
    background: #F8F2EC 0% 0% no-repeat padding-box;
    color: #595757 !important;
    border-radius: 30px;
    font-weight: 500;
    height: 40px;
    width: 115px;
    font-size: 16px;
    line-height: 40px;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .post-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .post-meta {
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .post-date {
        margin-bottom: 5px;
    }

    .post-share {
        gap: 10px;
        margin-bottom: 20px;
    }

    .share-link {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .post-navigation-buttons {
        margin-top: 30px;
    }

    .post-navigation-buttons a {
        font-size: 14px;
        line-height: 30px;
    }

    .back-to-list {
        padding: 6px 15px;
    }
}

@media (max-width: 1199.98px) {
  .post-navigation-buttons a {
    font-size: 14px;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
    .post-title {
        font-size: 28px;
    }
}</pre></body></html>