:root {
    --thm-body-font: 'Krub', sans-serif;
    --thm-heading-font: 'Rubik', sans-serif;
    --thm-primary: #FFD550;
    --thm-primary-rgb: 255, 213, 80;
    --thm-secondary: #186265;
    --thm-secondary-rgb: 24, 98, 101;
    --thm-body-font-color: #60666C;
    --thm-paragraph-color: #60666C;
    --thm-body-font-size: 16px;
    --thm-body-font-weight: 400;
    --thm-heading-font-color: #0D4250;
    --thm-heading-font-weight: 700;
    --thm-body-background: #ffffff;
    --thm-bg-one: #0D4250;
    --thm-bg-two: #186265;
    --thm-white: #ffffff;
    --thm-black: #0D4250;
    --thm-blue: #0d6efd;
    --thm-indigo: #6610f2;
    --thm-purple: #6f42c1;
    --thm-pink: #d63384;
    --thm-red: #dc3545;
    --thm-orange: #fd7e14;
    --thm-yellow: #ffc107;
    --thm-green: #198754;
    --thm-teal: #20c997;
    --thm-cyan: #0dcaf0;
}

.blog-one__single {
    position: relative;
    display: block;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-bottom: 10px;
    z-index: 1;
}

.blog-one__single::before {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-secondary-rgb), 0.06);
    border-radius: 4px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    content: "";
    z-index: -1;
}

.blog-one__single:hover::before {
    background: var(--thm-secondary);
}

.blog-one__single hr {
    height: 2px;
    background-color: #186265;
}

.blog-one__single:hover hr {
    background: linear-gradient(to right,#186265,#FFD550); /* 渐变背景 */
    transition: transform 5s; /* 过渡效果 */
}

.blog-one__single::after {
    position: absolute;
    top: 20px;
    left: 0;
    bottom: 20px;
    right: 30px;
    border: 1px solid var(--thm-primary);
    border-radius: 4px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    content: "";
    z-index: -2;
}

.blog-one__single:hover::after {
    border-color: var(--thm-secondary);
}

.blog-one__single-content {
    position: relative;
    display: block;
    padding: 31px 10px 20px 20px;
    z-index: 1;
}

.blog-one__single-content::before {
    position: absolute;
    top: 0;
    left: 19px;
    bottom: 0;
    right: 0;
    background: var(--thm-white);
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    content: "";
    z-index: -1;
}

.blog-one__single-content h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    text-transform: capitalize;
}

.blog-one__single-content h2 a {
    color: var(--thm-heading-color);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    color: inherit;
    transition: all 500ms ease;
}

.blog-one__single-content h2 a:hover {
    background-size: 100% 1px;
}

.blog-one__single-content .meta-box a button{
    color: var(--thm-heading-font-color);
}

.blog-one__single-content .meta-box a button:hover {
    color: var(--thm-primary);
}