/* Blog-specific styles with T-Mobile colors */

/* Breadcrumbs */
.breadcrumbs {
    background: linear-gradient(135deg, #f8f3ff 0%, #ffe6f5 100%);
    padding: 15px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid #e20074;
}

.breadcrumbs a {
    color: #e20074;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.breadcrumbs a:hover {
    color: #0019a5;
}

.breadcrumbs span {
    color: #6c757d;
}

/* Blog Post Layout */
.blog-post {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f3ff 100%);
}

.blog-post .container {
    max-width: 900px;
}

/* Article Header */
.article-header {
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #e20074 0%, #ff1a8c 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(226, 0, 116, 0.3);
}

.article-header h1 {
    font-size: 2.5rem;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.article-meta span {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Table of Contents */
.toc {
    background: linear-gradient(135deg, #fff5fc 0%, #f0e6ff 100%);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    border-left: 6px solid #e20074;
    box-shadow: 0 4px 15px rgba(226, 0, 116, 0.15);
}

.toc h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #e20074;
    margin-top: 0;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.toc li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #e20074;
    font-weight: bold;
}

.toc a {
    color: #212529;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.toc a:hover {
    color: #e20074;
    padding-left: 5px;
}

/* Article Sections */
.article-section {
    margin-bottom: 50px;
}

.article-section h2 {
    font-size: 2rem;
    color: #e20074;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e20074;
    position: relative;
}

.article-section h2:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: #0019a5;
}

.article-section h3 {
    font-size: 1.5rem;
    color: #0019a5;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-section ul,
.article-section ol {
    margin-bottom: 25px;
    padding-left: 25px;
    line-height: 1.8;
}

.article-section li {
    margin-bottom: 12px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #fff5fc 0%, #ffe6f5 100%);
    border-left: 6px solid #e20074;
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(226, 0, 116, 0.15);
}

.highlight-box h3 {
    margin-top: 0;
    color: #e20074;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.highlight-box p {
    margin-bottom: 0;
}

.highlight-box ul {
    margin-bottom: 0;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #fff9e6 0%, #ffedd5 100%);
    border-left: 6px solid #ff9800;
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.15);
}

.warning-box h3 {
    margin-top: 0;
    color: #ff9800;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Example Box */
.example-box {
    background: linear-gradient(135deg, #e6f7ff 0%, #d9f0ff 100%);
    border-left: 6px solid #0019a5;
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 25, 165, 0.15);
}

.example-box p {
    margin-bottom: 10px;
}

.example-box ul {
    margin-bottom: 10px;
}

.example-box p:last-child {
    font-weight: 600;
    font-size: 1.15rem;
    color: #0019a5;
    margin-bottom: 0;
}

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin: 30px 0;
}

.price-table thead {
    background: linear-gradient(135deg, #e20074 0%, #ff1a8c 100%);
    color: white;
}

.price-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.price-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.price-table tbody tr {
    transition: all 0.3s;
}

.price-table tbody tr:hover {
    background: linear-gradient(135deg, #fff5fc 0%, #ffe6f5 50%);
    transform: scale(1.01);
}

.price-table tbody tr.highlight {
    background: linear-gradient(135deg, #fff5fc 0%, #ffe6f5 100%);
    border-left: 5px solid #e20074;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-item {
    background: linear-gradient(135deg, #f8f3ff 0%, #ffe6f5 100%);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 5px solid #e20074;
    box-shadow: 0 3px 10px rgba(226, 0, 116, 0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(226, 0, 116, 0.2);
    transform: translateY(-3px);
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #e20074;
    font-size: 1.2rem;
}

.faq-item p {
    margin: 0;
    line-height: 1.7;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #e20074 0%, #0019a5 100%);
    color: white;
    padding: 50px;
    margin: 50px 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(226, 0, 116, 0.4);
}

.cta-box h3 {
    margin-top: 0;
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-box .cta-button {
    background: white;
    color: #e20074;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-box .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #fff5fc;
}

/* Share Section */
.share-section {
    background: linear-gradient(135deg, #f8f3ff 0%, #ffe6f5 100%);
    padding: 30px;
    margin: 50px 0;
    border-radius: 16px;
    text-align: center;
}

.share-section h3 {
    margin-top: 0;
    color: #e20074;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .article-header {
        padding: 25px;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-section h2 {
        font-size: 1.6rem;
    }

    .article-section h3 {
        font-size: 1.3rem;
    }

    .price-table {
        font-size: 0.9rem;
    }

    .price-table th,
    .price-table td {
        padding: 12px 10px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
    }
}
