/* Popup One */
.hero-popup1 {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
}

.hero-popup1 img {
    position: absolute;
    z-index: 1000;
    width: 70%;
    top: 80px;
    right: 100px;
}

.popup-close-btn {
    position: absolute;
    top: 90px;
    right: 110px;
    font-size: 12px;
    padding-inline: 8px;
    padding-block: 7px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.5);
}

.popup-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.popup-close-btn:active {
    background: rgba(255, 255, 255, 0.2);
}

.on-popup {
    display: block;
}

/* Popup two */
.hero-popup2 {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
}

.project-popup {
    width: 510px;
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.close {
    cursor: pointer;
    font-size: 20px;
}

.popup-description {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.popup-form label {
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-top: 14px;
    margin-bottom: 6px;
}

.popup-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    font-size: 13px;
    color: rgba(166, 160, 155);
}

.optional {
    color: #999;
    font-size: 12px;
}

.project-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.type {
    border: 1px solid #e2e2e2;
    background: white;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.type img {
    width: 16px;
    height: 16px;
}

.type.active {
    background: #4a3a2f;
    color: white;
    border: none;
}

.budget-label {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    font-size: 14px;
}

.budget-value {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wallet-icon{
    width: 16px;
    height: 16px;
}

.range-slider {
    width: 100%;
}

.budget-range{
  width:100%;
  appearance:none;
  height:6px;
  background:#e5e5e5;
  border-radius:6px;
  outline:none;
}

.range-slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4a3a2f;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #4a3a2f;
}

.budget-footer {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: #888;
    margin-bottom: 20px;
    margin-top: -15px;
}

.callback-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #4a3a2f;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.callback-btn:hover {
    background: #3b2d23;
}

.info-icon{
    width: 16px;
    height: 16px;
}

.popup-footer {
    margin-top: 12px;
    font-size: 12px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 80px 0;
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    gap: 40px;
}

.hero-left {
    max-width: 420px;
    padding-top: 80px;
    flex-shrink: 0;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title span {
    display: block;
    font-size: 80px;
    line-height: 1;
    color: var(--color-secondary);
}

.title-regular {
    font-family: var(--font-primary);
    font-weight: 500;
}

.title-serif {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
}

.hero-tagline {
    font-family: var(--font-secondary);
    font-size: 18px;
    color: #000;
    margin-bottom: 35px;
}

.phone-input {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.phone-input input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-family: var(--font-primary);
    font-size: 16px;
    color: rgba(47, 47, 47, 0.6);
    outline: none;
    min-width: 0;
}

.phone-input .btn {
    border-radius: 0;
    white-space: nowrap;
    padding: 18px 28px;
}

/* Hero Right - Card and Building */
.hero-right {
    position: relative;
    flex: 1;
    max-width: 750px;
    min-height: clamp(450px, 65vh, 650px);
}

.hero-card {
    background: white;
    border-radius: 30px 80px 30px 30px;
    padding: 30px 35px clamp(200px, 30vh, 320px) 35px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.card-header {
    flex: 1;
}

.card-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.tab {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid rgba(60, 46, 37, 0.3);
    background: transparent;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
}

.card-text {
    padding-right: 20px;
}

.card-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--color-secondary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(59, 46, 37, 0.7);
}

.room-tour {
    text-align: right;
    flex-shrink: 0;
}

.tour-label {
    display: block;
    font-size: 11px;
    color: rgba(59, 46, 37, 0.6);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.tour-content {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #E8E4DE;
    border-radius: 15px;
    padding: 10px 12px;
}

.play-btn {
    width: 40px;
    height: 40px;
    background: var(--color-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.play-btn svg {
    width: 12px;
    height: 14px;
}

.tour-content img {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

/* Building Showcase */
.building-showcase {
    position: absolute;
    top: clamp(100px, 50vh, 200px);
    left: clamp(-120px, -5vw, -40px);
    right: clamp(-80px, -5vw, -40px);
    z-index: 2;
}

.building-showcase>img {
    width: 150%;
    height: clamp(480px, 35vh, 500px);
    object-fit: contain;
}

.hotspots .hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotspot::after {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

/* Hero Bottom */
.hero-bottom {
    position: relative;
    z-index: 3;
    margin-top: -80px;
}

.hero-bottom-content {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.materials-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 50%;
}

.materials-card {
    background: var(--color-brown);
    padding: 35px 140px 40px 45px;
    border-top-right-radius: 50px;
    color: white;
    min-width: 380px;
}

.materials-card h4 {
    font-family: var(--font-inter);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.3;
}

.materials-card p {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.9;
}

.interior-preview {
    position: absolute;
    top: 20px;
    right: -40px;
    width: 200px;
    z-index: 2;
}

.interior-preview img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hero-bottom-right {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.customers-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 50px;
    color: white;
    text-align: center;
}

.customer-avatars {
    display: flex;
    margin-bottom: 8px;
}

.customer-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    object-fit: cover;
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 56px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 300;
    margin-top: 5px;
}

.nature-card {
    padding: 30px 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.nature-card p {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.35;
    letter-spacing: 0.5px;
}

.learn-more {
    font-family: var(--font-inter);
    font-size: 14px;
    text-decoration: underline;
    color: white;
    text-underline-offset: 3px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border-radius: 8px;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--color-primary);
    color: white;
    border-radius: 30px;
    padding: 14px 28px;
}

.btn-outline {
    background: white;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    font-weight: 600;
}

.btn-link {
    background: transparent;
    color: var(--color-primary);
    padding: 0;
    font-weight: 600;
}

.arrow {
    display: inline-block;
    width: var(--arrow-size);
    height: var(--arrow-size);
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translate(3px, -3px);
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
}

.view-all:hover {
    opacity: 0.8;
}

.arrow svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.heart-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #3C2E25;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

/* ===== Section Styles ===== */
.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-secondary);
}

.section-title.centered {
    text-align: center;
}

.section-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.stats-header .section-title {
    flex: 0 0 40%;
}

.stats-header .section-desc {
    flex: 1;
    padding-top: 10px;
}

.stats-content {
    display: flex;
    gap: 30px;
}

.stats-left {
    flex: 0 0 420px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--color-bg-light);
    border-radius: 25px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 150px;
}

.stat-card.dark {
    background: var(--color-primary);
    color: white;
}

.stat-card.dark .stat-value,
.stat-card.dark .stat-text {
    color: white;
}

.stats-right {
    flex: 1;
}

.stat-card.large {
    height: 100%;
    background: var(--color-bg-light);
    border-radius: 25px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.stat-card-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    height: 100%;
}

.stat-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-card-image {
    flex: 0 0 200px;
    height: 100%;
}

.stat-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #262626;
}

.stat-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(47, 47, 47, 0.7);
    margin-top: 8px;
}

.feature-list {
    margin-bottom: 25px;
}

.feature-list li {
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
    color: rgba(47, 47, 47, 0.7);
}

.stat-card.large .btn-dark {
    margin-top: auto;
    align-self: flex-start;
}

/* ===== Projects Section ===== */
.projects-section {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.projects-header .section-title {
    flex: 0 0 45%;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.project-card.large {
    grid-row: span 2;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ccc;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.favorite-btn.active {
    color: var(--color-primary);
}

.projects-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: #E8E8E8;
}

.testimonials-background {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    height: auto;
    z-index: 0;
}

.testimonials-background img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    padding-top: 30px;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.testimonials-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(59, 46, 37, 0.7);
}

/* Horizontal Scrolling Slider */
.testimonials-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
    padding: 20px 0;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.client-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(59, 46, 37, 0.8);
    margin-bottom: 30px;
    flex-grow: 1;
    min-height: 100px;
}

.project-details {
    display: flex;
    gap: 40px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.project-details .detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(59, 46, 37, 0.5);
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-secondary);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.client-person-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-secondary);
}

.client-title {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4A9B9B;
}

/* ===== Performance Stats Section ===== */
.performance-stats {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.perf-stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.perf-stat {
    text-align: left;
    padding: 0 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.perf-stat:last-child {
    border-right: none;
}

.perf-value {
    display: block;
    font-family: var(--font-secondary);
    font-size: 52px;
    font-weight: 700;
    color: #0F172B;
    margin-bottom: 10px;
    line-height: 1;
}

.perf-label {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-brown);
    line-height: 1.5;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.cta-left {
    flex: 0 0 45%;
}

.cta-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(60, 46, 37, 0.5);
    margin-bottom: 20px;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 35px;
}

.cta-features {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 18px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 25px;
}

.cta-features .feature:first-child {
    padding-left: 0;
}

.cta-features .divider {
    width: 1px;
    height: 20px;
    background: rgba(60, 46, 37, 0.15);
}

.cta-features .feature svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.cta-features .feature span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-top: 25px;
    border-top: 1px solid #E8E3DD;
}

.cta-buttons .btn-primary {
    border-radius: 50px;
    padding: 14px 30px;
    box-shadow: 0 4px 15px rgba(60, 46, 37, 0.2);
}

.cta-right {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-right img {
    width: 100%;
    height: auto;
}

/* ===== Blog Section ===== */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-header {
    margin-bottom: 50px;
}

.blog-header .section-title {
    margin-bottom: 10px;
}

.blog-header .section-desc {
    max-width: 600px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 280px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6A7282;
}

.blog-meta svg {
    flex-shrink: 0;
}

.blog-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    color: #101828;
    margin-bottom: 12px;
}

.blog-excerpt {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #6A7282;
    margin-bottom: 20px;
}

.blog-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
}
