/* Focus Page Specific Styles */

/* Theme colors consistent with about-us.html */
:root {
    --golden-brown: var(--sun);
    --transition-premium: all 0.3s ease;
    --monotone-dark: #1A112E;
    --water-darker: #26496B;
    --water: #305B86;
    --water-lighter: #597C9E;
    --sun: #E5990C;
    --sun-lighter: #EAAD3D;
}

/* Hero section styling */
.hero-section {
    background: linear-gradient(135deg, var(--monotone-dark) -50%, var(--water-darker) 0%, var(--water) 30%, var(--water-lighter) 80%, var(--monotone-dark) 150%) !important;
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-section .pattern-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/patterns/dot-pattern.png');
    opacity: 0.1;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--light);
    padding: 0 15px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 50%, var(--sun) 200%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Breadcrumb styling */
.breadcrumb-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.breadcrumb-custom {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    white-space: nowrap;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-custom a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.breadcrumb-custom i.divider {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    font-size: 12px;
}

.breadcrumb-custom span {
    color: var(--sun-lighter);
    font-weight: 600;
}

/* News tabs styling */
.news-tabs .nav-pills {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 10px;
}

.news-tabs .nav-link {
    color: var(--mountain-brown);
    background-color: transparent;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 500;
    transition: var(--transition-premium);
    border: 2px solid transparent;
}

.news-tabs .nav-link:hover {
    background-color: rgba(234, 173, 61, 0.1);
    border-color: var(--golden-brown);
    transform: translateY(-2px);
}

.news-tabs .nav-link.active {
    background-color: var(--golden-brown);
    color: white;
    border-color: var(--golden-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 153, 12, 0.3);
}

.news-tabs .nav-link i {
    margin-right: 8px;
}

/* Card base styles */
.focus-card, .story-card, .media-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
}

.focus-card:hover, .story-card:hover, .media-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--golden-brown);
}

/* Focus card specific */
.focus-card {
    display: flex;
    flex-direction: column;
}

.focus-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.focus-card:hover .focus-image img {
    transform: scale(1.1);
}

.focus-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.focus-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.focus-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--mountain-brown);
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.focus-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* Story card specific */
.story-card {
    display: flex;
    flex-direction: column;
}

.story-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.story-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--mountain-brown);
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.story-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.story-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.author-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid var(--golden-brown) !important;
    margin-right: 12px !important;
    transition: transform 0.3s ease !important;
}

.story-card:hover .author-avatar {
    transform: scale(1.1);
}

.story-author div {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--mountain-brown);
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-role {
    color: var(--water-blue);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Avatar container for faculty/alumni */
.avatar-container {
    padding: 30px 20px 20px 20px;
    text-align: center;
    border-bottom: 2px solid #f8f9fa;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.avatar-img {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 4px solid var(--golden-brown) !important;
    margin: 0 auto 15px auto !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.story-card:hover .avatar-img {
    transform: scale(1.1);
}

.avatar-container .author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mountain-brown);
    margin: 15px 0 8px 0;
    font-family: 'Playfair Display', serif;
}

.avatar-container .author-role {
    color: var(--water-blue);
    font-size: 1rem;
    font-weight: 500;
}

/* Media card specific */
.media-card {
    padding: 0;
}

.media-source {
    display: flex;
    align-items: center;
    padding: 24px 24px 12px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.media-logo {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover !important;
    margin-right: 15px !important;
    border-radius: 50% !important;
    border: 3px solid var(--golden-brown) !important;
    transition: transform 0.3s ease !important;
}

.media-card:hover .media-logo {
    transform: scale(1.1);
}

.media-source-name {
    font-weight: 700;
    color: var(--mountain-brown);
    font-size: 1rem;
}

.media-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 20px 24px 15px 24px;
    color: var(--mountain-brown);
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.media-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 24px 25px 24px;
    flex: 1;
}

.media-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 24px 24px;
    border-top: 2px solid #f8f9fa;
    margin-top: auto;
}

.media-date {
    color: var(--water-blue);
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-read-article {
    background: linear-gradient(135deg, var(--water-blue) 0%, var(--water-darker) 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-read-article:hover {
    background: linear-gradient(135deg, var(--golden-brown) 0%, var(--sun-darker) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 153, 12, 0.4);
    color: white;
    text-decoration: none;
}

.btn-read-article i {
    transition: transform 0.3s ease;
}

.btn-read-article:hover i {
    transform: translateX(3px);
}

/* Read More Button Styling */
.btn-read-more {
    background: linear-gradient(135deg, var(--water-blue) 0%, var(--water-darker) 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-top: auto;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, var(--golden-brown) 0%, var(--sun-darker) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 153, 12, 0.4);
    color: white;
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(3px);
}

.card-actions {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Ensure cards have proper flex layout for buttons */
.focus-content, .story-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.focus-content p, .story-content p {
    flex: 1;
    margin-bottom: 0;
}

/* Modal styling - Enhanced visibility */
.focus-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.focus-modal.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.modal-container {
    background-color: white;
    width: 95%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: translateY(0) scale(1);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100000 !important;
}

/* Force modal visibility when active */
.focus-modal[style*="display: flex"] {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.focus-modal.active .modal-container {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
}

/* Debug styles to ensure modal is visible */
.focus-modal[style*="display: flex"] {
    display: flex !important;
}

.focus-modal.active[style*="display: flex"] {
    opacity: 1 !important;
    visibility: visible !important;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 30px 20px 30px;
    border-bottom: 2px solid #f8f9fa;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--mountain-brown);
    margin: 0;
    padding-right: 50px;
    font-weight: 700;
    line-height: 1.3;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    position: absolute;
    top: 25px;
    right: 25px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--mountain-brown);
    background: rgba(0,0,0,0.1);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-direction: column;
    max-height: calc(90vh - 180px);
    overflow-y: auto;
    padding: 30px;
}

.modal-image {
    width: 100%;
    max-height: 350px;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 12px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-meta {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.modal-date, .modal-category, .modal-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--water-blue);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(48, 91, 134, 0.1);
    border-radius: 20px;
}

.modal-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.modal-content h2, .modal-content h3, .modal-content h4 {
    color: var(--mountain-brown);
    font-family: 'Playfair Display', serif;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modal-content h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--golden-brown);
    padding-bottom: 10px;
}

.modal-content h3 {
    font-size: 1.3rem;
}

.modal-content h4 {
    font-size: 1.1rem;
}

.modal-content ul, .modal-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.modal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.modal-content blockquote {
    border-left: 4px solid var(--golden-brown);
    margin: 20px 0;
    padding: 15px 20px;
    background: rgba(234, 173, 61, 0.1);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.modal-content strong, .modal-content b {
    color: var(--mountain-brown);
    font-weight: 700;
}

.modal-content em, .modal-content i {
    color: var(--water-blue);
}

.modal-footer {
    padding: 25px 30px;
    border-top: 2px solid #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.share-section {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.share-heading {
    font-size: 1rem;
    color: var(--mountain-brown);
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.share-facebook { background: linear-gradient(135deg, #3b5998, #2d4373); }
.share-twitter { background: linear-gradient(135deg, #1da1f2, #0d8bd9); }
.share-linkedin { background: linear-gradient(135deg, #0077b5, #005885); }
.share-email { background: linear-gradient(135deg, #dd4b39, #c23321); }
.share-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.share-copy { background: linear-gradient(135deg, #6c757d, #495057); }

.copy-tooltip {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--mountain-brown);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.copy-tooltip.show {
    opacity: 1;
    visibility: visible;
}

/* Share Your Story CTA */
.share-story-cta {
    background: linear-gradient(135deg, var(--water-darker), var(--water));
    padding: 60px 0;
    color: white;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.share-story-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/patterns/dot-pattern.png');
    opacity: 0.1;
}

.share-story-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.share-story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.share-story-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-story {
    background: var(--golden-brown);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    border: 2px solid var(--golden-brown);
}

.btn-story:hover {
    background: white;
    color: var(--golden-brown);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-story i {
    transition: transform 0.3s ease;
}

.btn-story:hover i {
    transform: translateX(5px);
}

/* Skeleton Loading Styles */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.skeleton-image {
    height: 220px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton-content {
    padding: 24px;
}

.skeleton-title {
    height: 24px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 12px;
    width: 80%;
}

.skeleton-text {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-text:nth-child(2) { width: 100%; }
.skeleton-text:nth-child(3) { width: 90%; }
.skeleton-text:nth-child(4) { width: 75%; }

.skeleton-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.skeleton-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    margin-right: 12px;
}

.skeleton-author-info {
    flex: 1;
}

.skeleton-author-name {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 6px;
    width: 60%;
}

.skeleton-author-role {
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    width: 80%;
}

.skeleton-button {
    height: 36px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 25px;
    margin-top: auto;
    width: 120px;
}

/* Media skeleton specific */
.skeleton-media-source {
    display: flex;
    align-items: center;
    padding: 24px 24px 12px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.skeleton-media-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    margin-right: 15px;
}

.skeleton-media-name {
    height: 18px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    width: 70%;
}

.skeleton-media-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 24px 24px;
    border-top: 2px solid #f8f9fa;
}

.skeleton-media-date {
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    width: 80px;
}

/* Faculty/Alumni skeleton with avatar container */
.skeleton-avatar-container {
    padding: 30px 20px 20px 20px;
    text-align: center;
    border-bottom: 2px solid #f8f9fa;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.skeleton-avatar-large {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    margin: 0 auto 15px auto;
}

.skeleton-avatar-name {
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin: 15px auto 8px auto;
    width: 70%;
}

.skeleton-avatar-role {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin: 0 auto;
    width: 80%;
}
