.magazine-detail-content {
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Headings */
.magazine-detail-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 24px 0 16px;
    color: #111;
}

.magazine-detail-content h2 {
    font-size: 30px;
    font-weight: 600;
    margin: 22px 0 14px;
    color: #222;
}

.magazine-detail-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 20px 0 12px;
    color: #333;
}

.magazine-detail-content h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 18px 0 10px;
}

.magazine-detail-content h5 {
    font-size: 18px;
    font-weight: 500;
    margin: 16px 0 8px;
}

.magazine-detail-content h6 {
    font-size: 16px;
    font-weight: 500;
    margin: 14px 0 6px;
}

/* Paragraphs */
.magazine-detail-content p {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Links */
.magazine-detail-content a {
    color: #1a73e8;
    text-decoration: underline;
}

.magazine-detail-content a:hover {
    color: #0b59d1;
}

/* Lists */
.magazine-detail-content ul,
.magazine-detail-content ol {
    margin: 12px 0 12px 30px;
}

.magazine-detail-content li {
    margin-bottom: 8px;
}

/* Blockquotes */
.magazine-detail-content blockquote {
    border-left: 4px solid #ccc;
    padding-left: 16px;
    color: #666;
    font-style: italic;
    margin: 16px 0;
    background-color: #f9f9f9;
}

/* Images */
.magazine-detail-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 16px 0;
    border-radius: 4px;
}

/* Tables */
.magazine-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.magazine-detail-content th,
.magazine-detail-content td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.magazine-detail-content th {
    background-color: #f4f4f4;
    font-weight: 600;
}

/* Code and preformatted text */
.magazine-detail-content pre {
    background-color: #f5f5f5;
    padding: 12px;
    overflow-x: auto;
    border-radius: 4px;
    margin: 16px 0;
}

.magazine-detail-content code {
    background-color: #f5f5f5;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: monospace;
}

/* Horizontal rules */
.magazine-detail-content hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 24px 0;
}

/* Small text */
.magazine-detail-content small {
    font-size: 85%;
    color: #777;
}

/* Strong and emphasis */
.magazine-detail-content strong {
    font-weight: 700;
}

.magazine-detail-content em {
    font-style: italic;
}

/* Iframes / embedded videos */
.magazine-detail-content iframe {
    max-width: 100%;
    margin: 16px 0;
}

/* Figures & captions */
.magazine-detail-content figure {
    margin: 16px 0;
    text-align: center;
}

.magazine-detail-content figcaption {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
}

/* Responsive if needed */
@media (max-width: 768px) {
    .magazine-detail-content h1 { font-size: 28px; }
    .magazine-detail-content h2 { font-size: 24px; }
    .magazine-detail-content h3 { font-size: 20px; }
    .magazine-detail-content h4 { font-size: 18px; }
    .magazine-detail-content p { font-size: 15px; }
}



.pdf-btn {
    position: relative;
    display: inline-block;
    padding: 12px 24px 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #e74c3c;
    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    transition: background 0.3s ease;
}

.pdf-btn i {
    margin-right: 8px;
}

/* Folded corner effect */
.pdf-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 20px solid #c0392b; /* darker corner */
    border-left: 20px solid transparent;
    transition: border-top-color 0.3s ease;
}

/* Hover effect: corner color change */
.pdf-btn:hover::after {
    border-top-color: #d35400; /* brighter corner color */
}

.pdf-btn:hover {
    background: #c0392b; /* main button color slightly darker */
}


.bg-linkedin {
    background-color: #0077b5;
    color: #fff;
    transition: all 0.3s ease;
    margin: 0px 5px;
}

.bg-linkedin:hover {
    background-color: #005e8c;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 14px rgba(0, 119, 181, 0.35);
}


.bg-whatsapp {
    background-color: #25D366;
    color: #fff;
    transition: all 0.3s ease;
}

.bg-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.35);
}
