/* Container - NON full screen */

.text-detail {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 80px 120px 80px;
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
}

/* Category label */
.text-category {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 4px;
}

/* Title GRANDE */
.text-title {
    font-size: 28px;
    line-height: 30px;
}

/* Subtitle */
.text-subtitle {
    font-size: 22px;
    font-weight: normal;
    line-height: 20px;
    margin: 0 0 20px 0;
}

/* Meta (authors, publication) */
.text-meta {
    font-size: 16px;
    line-height: 10px;
    margin-bottom: 35px;
}

.text-meta p {
    margin: 0 0 -12px 0;
}

/* Additional info sections */
.text-info-section {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 4px;
}

.text-info-section p {
    margin: 0 0 3px 0;
}

.text-info-section a {
    color: #000000;
    text-decoration: underline;
}

.text-info-section a:hover {
    opacity: 0.6;
}

/* Main Content Text */
.text-content {
    font-size: 16px;
    line-height: 14px;
    margin-bottom: 50px;
}

.text-content p {
    margin: 0 0 15px 0;
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* Back link */
.text-back {
    display: inline-block;
    font-size: 14px;
    margin-top: 60px;
    text-decoration: none;
    color: #000000;
    border-bottom: 1px solid #000000;
    padding-bottom: 2px;
}

.text-back:hover {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .text-detail {
        padding: 50px 40px 100px 40px;
    }
}

@media (max-width: 768px) {
    .text-detail {
        padding: 40px 20px 80px 20px;
    }
    
    .text-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .text-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .text-meta {
        font-size: 15px;
        margin-bottom: 50px;
    }
}
/* Links con icone */
.text-links-section {
    margin-bottom: 10px;
}

.text-link-item {
    margin-bottom: 5px;
}

.text-link-item a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.text-link-item a:hover {
    opacity: 0.6;
}

.text-link-item svg {
    flex-shrink: 0;
    color: #000000;
}

.text-link-item span {
    text-decoration: underline;
}