.tl_latest_v1 {
    max-width: 1600px;
    margin: 0 auto;
	padding: 150px 0
}

.tl_latest_v1 .grid-article {
    display: grid;
    grid-template-columns: 120px 300px 1fr;
    gap: 40px;
    background: white;
    padding: 50px 0;
    align-items: start;
	border-bottom: 1px solid #ddd
}

.tl_latest_v1 .grid-date {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    padding-top: 10px;
}

.tl_latest_v1 .grid-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
	background-size: cover
}

.tl_latest_v1 .grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tl_latest_v1 .grid-image-placeholder {
    width: 80px;
    height: 80px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
}

.tl_latest_v1 .grid-content {
    padding-top: 10px;
}

.tl_latest_v1 .grid-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.3;
}

.tl_latest_v1 .grid-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.tl_latest_v1 .grid-more {
    display: inline-flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.tl_latest_v1 .grid-more:hover {
    color: #0066cc;
}

.tl_latest_v1 .grid-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.tl_latest_v1 .grid-more:hover::after {
    transform: translateX(4px);
}

/* Tablet */
@media (max-width: 1024px) {
    .tl_latest_v1 .grid-article {
        grid-template-columns: 100px 250px 1fr;
        gap: 30px;
        padding: 30px;
    }

    .tl_latest_v1 .grid-title {
        font-size: 24px;
    }

    .tl_latest_v1 .grid-image {
        height: 180px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tl_latest_v1 {
        padding: 0x;
    }

    .tl_latest_v1 .grid-article {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 0 50px 0 ;
        margin-bottom: 24px;
    }

    .tl_latest_v1 .grid-date {
        font-size: 14px;
        order: -1;
    }

    .tl_latest_v1 .grid-image {
        height: 200px;
        order: 1;
    }

    .tl_latest_v1 .grid-content {
        order: 2;
        padding-top: 0;
    }

    .tl_latest_v1 .grid-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .tl_latest_v1 .grid-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .tl_latest_v1 {
        padding: 0;
    }

    .tl_latest_v1 .grid-article {
        padding: 20px;
    }

    .tl_latest_v1 .grid-title {
        font-size: 20px;
    }

    .tl_latest_v1 .grid-description {
        font-size: 14px;
    }
}