/* Articles CSS - Christiane School */

/* Desktop Styles */
@media only screen and (min-width: 1023px) {
  .brandarea {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  
  .brandname {
    display: flex;
    flex-direction: column;
  }
  
  .brandnameh2 {
    margin-top: 30px;
    font-weight: bold;
    font-size: 32px;
  }
  
  .logo {
    height: 96px;
    width: 116px;
    margin-top: 22px;
    margin-right: 20px;
  }
  
  .navbar {
    height: 80px;
    background-color: #1F61AA;
  }
  
  .nav-item {
    margin-right: 20px;
  }
  
  .nav-item:hover {
    border-bottom: 3px solid white;
  }
  
  .verytop {
    height: 130px;
    font-family: proza;
  }
  
  .navlocation {
    display: none;
  }

  .articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .articles-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .articles-title {
    font-size: 3rem;
    color: #1F61AA;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  }

  .articles-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
  }

  .article-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
  }

  .article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .article-card.coming-soon {
    opacity: 0.7;
    cursor: default;
  }

  .article-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
  }

  .article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .article-card:hover .article-img {
    transform: scale(1.05);
  }

  .article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1F61AA;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .article-content {
    padding: 30px;
  }

  .article-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: bold;
  }

  .article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #888;
  }

  .article-date {
    font-weight: 500;
  }

  .article-read-time {
    background: #EEECEF;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
  }

  .endsection {
    height: 90px;
    background-color: #1F61AA;
    color: white;
    margin-top: 60px;
  }

  .endsection a {
    color: #D2EA4C;
  }

  /* Individual Article Page Styles */
  .article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .article-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
  }

  .breadcrumb a {
    color: #1F61AA;
    text-decoration: none;
  }

  .breadcrumb a:hover {
    text-decoration: underline;
  }

  .article-title {
    font-size: 2.5rem;
    color: #1F61AA;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
  }

  .article-meta span {
    background: #EEECEF;
    padding: 8px 16px;
    border-radius: 20px;
  }

  .article-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .article-body {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    line-height: 1.8;
    font-size: 1.1rem;
  }

  .article-body h2 {
    color: #1F61AA;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: bold;
  }

  .article-body p {
    margin-bottom: 20px;
    color: #333;
  }

  .article-body ul {
    margin: 20px 0;
    padding-left: 30px;
  }

  .article-body li {
    margin-bottom: 10px;
    color: #333;
  }

  .alumni-list, .activities-list, .enrichment-list {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #1F61AA;
  }

  .article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #EEECEF;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .back-to-articles .btn {
    background: #1F61AA;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
  }

  .share-section {
    text-align: right;
  }

  .share-section p {
    margin-bottom: 10px;
    color: #666;
    font-weight: bold;
  }

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

  .share-buttons .btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
  }

  /* Individual Article Page Mobile Styles */
  .article-container {
    padding: 20px 15px;
  }

  .article-header {
    margin-bottom: 30px;
  }

  .breadcrumb {
    margin-bottom: 15px;
    font-size: 0.8rem;
  }

  .article-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .article-meta {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.8rem;
  }

  .article-image {
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .hero-image {
    height: 250px;
  }

  .article-body {
    padding: 25px;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .article-body h2 {
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
  }

  .article-body p {
    margin-bottom: 15px;
  }

  .article-body ul {
    margin: 15px 0;
    padding-left: 20px;
  }

  .alumni-list, .activities-list, .enrichment-list {
    padding: 15px;
    border-radius: 8px;
  }

  .article-footer {
    margin-top: 30px;
    padding-top: 20px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .back-to-articles .btn {
    padding: 10px 20px;
    border-radius: 20px;
  }

  .share-section {
    text-align: center;
  }

  .share-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .share-buttons .btn {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
  }
}

/* Vintage Photo Styles - Responsive Design */
.vintage-photo-container {
  margin: 30px 0;
  text-align: center;
  padding: 0 15px;
}

.vintage-photo {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  filter: sepia(20%) contrast(1.1) brightness(1.05);
  transition: all 0.3s ease;
  border: 3px solid #f5f5f5;
  width: 100%;
}

.vintage-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  filter: sepia(10%) contrast(1.15) brightness(1.1);
}

.vintage-photo-caption {
  margin-top: 15px;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.photo-grid .vintage-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.single-photo {
  max-width: 500px;
  margin: 30px auto;
  padding: 0 10px;
}

.single-photo .vintage-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Vintage Photo Frame Effect */
.vintage-frame {
  position: relative;
  padding: 20px;
  background: linear-gradient(45deg, #f4f1e8, #e8e0d0);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
  margin: 0 10px;
}

.vintage-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #8b7355;
  border-radius: 15px;
  pointer-events: none;
}

.vintage-frame .vintage-photo {
  border: none;
  border-radius: 10px;
}

/* Mobile Styles - Enhanced Responsiveness */
@media only screen and (max-width: 700px) {
  .vintage-photo-container {
    margin: 15px 0;
    padding: 0 5px;
  }
  
  .vintage-photo {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 100%;
  }
  
  .vintage-photo:hover {
    transform: none; /* Disable hover effects on mobile */
  }
  
  .vintage-photo-caption {
    font-size: 0.75rem;
    margin-top: 8px;
    padding: 0 5px;
    line-height: 1.3;
  }
  
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 15px 0;
  }
  
  .photo-grid .vintage-photo {
    height: 180px;
    width: 100%;
  }
  
  .single-photo {
    max-width: 100%;
    margin: 15px auto;
    padding: 0 5px;
  }
  
  .single-photo .vintage-photo {
    height: 220px;
    width: 100%;
  }
  
  .vintage-frame {
    padding: 10px;
    border-radius: 12px;
    margin: 0 5px;
  }
  
  .vintage-frame::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 8px;
  }
  
  .vintage-frame .vintage-photo {
    border-radius: 6px;
  }
}

/* Tablet Styles - Enhanced Responsiveness */
@media only screen and (min-width: 700px) and (max-width: 1023px) {
  .vintage-photo-container {
    margin: 20px 0;
    padding: 0 10px;
  }
  
  .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .photo-grid .vintage-photo {
    height: 200px;
  }
  
  .single-photo {
    max-width: 450px;
    padding: 0 10px;
  }
  
  .single-photo .vintage-photo {
    height: 280px;
  }
  
  .vintage-frame {
    padding: 15px;
    margin: 0 10px;
  }
  
  .vintage-photo-caption {
    font-size: 0.85rem;
    padding: 0 10px;
  }
}
.vintage-photo-container {
  margin: 30px 0;
  text-align: center;
}

.vintage-photo {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  filter: sepia(20%) contrast(1.1) brightness(1.05);
  transition: all 0.3s ease;
  border: 3px solid #f5f5f5;
}

.vintage-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  filter: sepia(10%) contrast(1.15) brightness(1.1);
}

.vintage-photo-caption {
  margin-top: 15px;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.photo-grid .vintage-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.single-photo {
  max-width: 500px;
  margin: 30px auto;
}

.single-photo .vintage-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Vintage Photo Frame Effect */
.vintage-frame {
  position: relative;
  padding: 20px;
  background: linear-gradient(45deg, #f4f1e8, #e8e0d0);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.vintage-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #8b7355;
  border-radius: 15px;
  pointer-events: none;
}

.vintage-frame .vintage-photo {
  border: none;
  border-radius: 10px;
}


/* Mobile Styles */
@media only screen and (max-width: 700px) {
  .brandarea {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }
  
  .brandname {
    display: flex;
    flex-direction: column;
  }
  
  .brandnameh2 {
    margin-top: 35px;
    font-size: 16px;
    font-weight: bold;
  }
  
  .brandnameh5 {
    font-size: 12px;
  }
  
  .logo {
    height: 66px;
    width: 76px;
    margin-top: 22px;
    margin-right: 10px;
  }
  
  .navbar {
    background-color: #1F61AA;
  }
  
  .nav-item {
    margin-right: 20px;
  }
  
  .nav-item:hover {
    border-bottom: 3px solid white;
  }
  
  .mynavbartext {
    text-align: center;
  }
  
  .verytop {
    height: 110px;
    font-family: proza;
  }

  .articles-container {
    padding: 20px 15px;
  }

  .articles-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .articles-title {
    font-size: 2rem;
    color: #1F61AA;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .articles-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    padding: 0 10px;
  }

  .articles-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .article-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .article-card.coming-soon {
    opacity: 0.7;
    cursor: default;
  }

  .article-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }

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

  .article-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1F61AA;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
  }

  .article-content {
    padding: 20px;
  }

  .article-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: bold;
  }

  .article-excerpt {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
  }

  .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.8rem;
    color: #888;
  }

  .article-read-time {
    background: #EEECEF;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
  }

  .endsection {
    height: 90px;
    background-color: #1F61AA;
    color: white;
    margin-top: 40px;
  }

  .endsection a {
    color: #D2EA4C;
  }

  /* Individual Article Page Styles */
  .article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .article-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
  }

  .breadcrumb a {
    color: #1F61AA;
    text-decoration: none;
  }

  .breadcrumb a:hover {
    text-decoration: underline;
  }

  .article-title {
    font-size: 2.5rem;
    color: #1F61AA;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
  }

  .article-meta span {
    background: #EEECEF;
    padding: 8px 16px;
    border-radius: 20px;
  }

  .article-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .article-body {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    line-height: 1.8;
    font-size: 1.1rem;
  }

  .article-body h2 {
    color: #1F61AA;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: bold;
  }

  .article-body p {
    margin-bottom: 20px;
    color: #333;
  }

  .article-body ul {
    margin: 20px 0;
    padding-left: 30px;
  }

  .article-body li {
    margin-bottom: 10px;
    color: #333;
  }

  .alumni-list, .activities-list, .enrichment-list {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #1F61AA;
  }

  .article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #EEECEF;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .back-to-articles .btn {
    background: #1F61AA;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
  }

  .share-section {
    text-align: right;
  }

  .share-section p {
    margin-bottom: 10px;
    color: #666;
    font-weight: bold;
  }

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

  .share-buttons .btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
  }

  /* Individual Article Page Mobile Styles */
  .article-container {
    padding: 20px 15px;
  }

  .article-header {
    margin-bottom: 30px;
  }

  .breadcrumb {
    margin-bottom: 15px;
    font-size: 0.8rem;
  }

  .article-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .article-meta {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.8rem;
  }

  .article-image {
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .hero-image {
    height: 250px;
  }

  .article-body {
    padding: 25px;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .article-body h2 {
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
  }

  .article-body p {
    margin-bottom: 15px;
  }

  .article-body ul {
    margin: 15px 0;
    padding-left: 20px;
  }

  .alumni-list, .activities-list, .enrichment-list {
    padding: 15px;
    border-radius: 8px;
  }

  .article-footer {
    margin-top: 30px;
    padding-top: 20px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .back-to-articles .btn {
    padding: 10px 20px;
    border-radius: 20px;
  }

  .share-section {
    text-align: center;
  }

  .share-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .share-buttons .btn {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
  }
}

/* Vintage Photo Styles - Responsive Design */
.vintage-photo-container {
  margin: 30px 0;
  text-align: center;
  padding: 0 15px;
}

.vintage-photo {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  filter: sepia(20%) contrast(1.1) brightness(1.05);
  transition: all 0.3s ease;
  border: 3px solid #f5f5f5;
  width: 100%;
}

.vintage-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  filter: sepia(10%) contrast(1.15) brightness(1.1);
}

.vintage-photo-caption {
  margin-top: 15px;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.photo-grid .vintage-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.single-photo {
  max-width: 500px;
  margin: 30px auto;
  padding: 0 10px;
}

.single-photo .vintage-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Vintage Photo Frame Effect */
.vintage-frame {
  position: relative;
  padding: 20px;
  background: linear-gradient(45deg, #f4f1e8, #e8e0d0);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
  margin: 0 10px;
}

.vintage-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #8b7355;
  border-radius: 15px;
  pointer-events: none;
}

.vintage-frame .vintage-photo {
  border: none;
  border-radius: 10px;
}

/* Mobile Styles - Enhanced Responsiveness */
@media only screen and (max-width: 700px) {
  .vintage-photo-container {
    margin: 15px 0;
    padding: 0 5px;
  }
  
  .vintage-photo {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 100%;
  }
  
  .vintage-photo:hover {
    transform: none; /* Disable hover effects on mobile */
  }
  
  .vintage-photo-caption {
    font-size: 0.75rem;
    margin-top: 8px;
    padding: 0 5px;
    line-height: 1.3;
  }
  
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 15px 0;
  }
  
  .photo-grid .vintage-photo {
    height: 180px;
    width: 100%;
  }
  
  .single-photo {
    max-width: 100%;
    margin: 15px auto;
    padding: 0 5px;
  }
  
  .single-photo .vintage-photo {
    height: 220px;
    width: 100%;
  }
  
  .vintage-frame {
    padding: 10px;
    border-radius: 12px;
    margin: 0 5px;
  }
  
  .vintage-frame::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 8px;
  }
  
  .vintage-frame .vintage-photo {
    border-radius: 6px;
  }
}

/* Tablet Styles - Enhanced Responsiveness */
@media only screen and (min-width: 700px) and (max-width: 1023px) {
  .vintage-photo-container {
    margin: 20px 0;
    padding: 0 10px;
  }
  
  .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .photo-grid .vintage-photo {
    height: 200px;
  }
  
  .single-photo {
    max-width: 450px;
    padding: 0 10px;
  }
  
  .single-photo .vintage-photo {
    height: 280px;
  }
  
  .vintage-frame {
    padding: 15px;
    margin: 0 10px;
  }
  
  .vintage-photo-caption {
    font-size: 0.85rem;
    padding: 0 10px;
  }
}
.vintage-photo-container {
  margin: 30px 0;
  text-align: center;
}

.vintage-photo {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  filter: sepia(20%) contrast(1.1) brightness(1.05);
  transition: all 0.3s ease;
  border: 3px solid #f5f5f5;
}

.vintage-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  filter: sepia(10%) contrast(1.15) brightness(1.1);
}

.vintage-photo-caption {
  margin-top: 15px;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.photo-grid .vintage-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.single-photo {
  max-width: 500px;
  margin: 30px auto;
}

.single-photo .vintage-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Vintage Photo Frame Effect */
.vintage-frame {
  position: relative;
  padding: 20px;
  background: linear-gradient(45deg, #f4f1e8, #e8e0d0);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.vintage-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #8b7355;
  border-radius: 15px;
  pointer-events: none;
}

.vintage-frame .vintage-photo {
  border: none;
  border-radius: 10px;
}


/* Tablet Styles */
@media only screen and (min-width: 700px) and (max-width: 1023px) {
  .brandarea {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }
  
  .brandname {
    display: flex;
    flex-direction: column;
  }
  
  .brandnameh2 {
    margin-top: 35px;
    font-size: 20px;
    font-weight: bold;
  }
  
  .brandnameh5 {
    font-size: 14px;
  }
  
  .logo {
    height: 66px;
    width: 76px;
    margin-top: 22px;
    margin-right: 10px;
  }
  
  .navbar {
    background-color: #1F61AA;
  }
  
  .nav-item {
    margin-right: 20px;
  }
  
  .nav-item:hover {
    border-bottom: 3px solid white;
  }
  
  .mynavbartext {
    text-align: center;
  }
  
  .verytop {
    height: 110px;
    font-family: proza;
  }
  
  .navbar-brand {
    display: none;
  }

  .articles-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
  }

  .articles-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .articles-title {
    font-size: 2.5rem;
    color: #1F61AA;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .articles-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
  }

  .articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .article-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }

  .article-card.coming-soon {
    opacity: 0.7;
    cursor: default;
  }

  .article-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }

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

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

  .article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #1F61AA;
    color: white;
    padding: 7px 14px;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
  }

  .article-content {
    padding: 25px;
  }

  .article-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: bold;
  }

  .article-excerpt {
    color: #666;
    line-height: 1.5;
    margin-bottom: 18px;
    font-size: 0.95rem;
  }

  .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.85rem;
    color: #888;
  }

  .article-read-time {
    background: #EEECEF;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
  }

  .endsection {
    height: 90px;
    background-color: #1F61AA;
    color: white;
    margin-top: 50px;
  }

  .endsection a {
    color: #D2EA4C;
  }

  /* Individual Article Page Styles */
  .article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .article-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
  }

  .breadcrumb a {
    color: #1F61AA;
    text-decoration: none;
  }

  .breadcrumb a:hover {
    text-decoration: underline;
  }

  .article-title {
    font-size: 2.5rem;
    color: #1F61AA;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
  }

  .article-meta span {
    background: #EEECEF;
    padding: 8px 16px;
    border-radius: 20px;
  }

  .article-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .article-body {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    line-height: 1.8;
    font-size: 1.1rem;
  }

  .article-body h2 {
    color: #1F61AA;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: bold;
  }

  .article-body p {
    margin-bottom: 20px;
    color: #333;
  }

  .article-body ul {
    margin: 20px 0;
    padding-left: 30px;
  }

  .article-body li {
    margin-bottom: 10px;
    color: #333;
  }

  .alumni-list, .activities-list, .enrichment-list {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #1F61AA;
  }

  .article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #EEECEF;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .back-to-articles .btn {
    background: #1F61AA;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
  }

  .share-section {
    text-align: right;
  }

  .share-section p {
    margin-bottom: 10px;
    color: #666;
    font-weight: bold;
  }

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

  .share-buttons .btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
  }

  /* Individual Article Page Mobile Styles */
  .article-container {
    padding: 20px 15px;
  }

  .article-header {
    margin-bottom: 30px;
  }

  .breadcrumb {
    margin-bottom: 15px;
    font-size: 0.8rem;
  }

  .article-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .article-meta {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.8rem;
  }

  .article-image {
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .hero-image {
    height: 250px;
  }

  .article-body {
    padding: 25px;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .article-body h2 {
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
  }

  .article-body p {
    margin-bottom: 15px;
  }

  .article-body ul {
    margin: 15px 0;
    padding-left: 20px;
  }

  .alumni-list, .activities-list, .enrichment-list {
    padding: 15px;
    border-radius: 8px;
  }

  .article-footer {
    margin-top: 30px;
    padding-top: 20px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .back-to-articles .btn {
    padding: 10px 20px;
    border-radius: 20px;
  }

  .share-section {
    text-align: center;
  }

  .share-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .share-buttons .btn {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
  }
}

/* Vintage Photo Styles - Responsive Design */
.vintage-photo-container {
  margin: 30px 0;
  text-align: center;
  padding: 0 15px;
}

.vintage-photo {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  filter: sepia(20%) contrast(1.1) brightness(1.05);
  transition: all 0.3s ease;
  border: 3px solid #f5f5f5;
  width: 100%;
}

.vintage-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  filter: sepia(10%) contrast(1.15) brightness(1.1);
}

.vintage-photo-caption {
  margin-top: 15px;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.photo-grid .vintage-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.single-photo {
  max-width: 500px;
  margin: 30px auto;
  padding: 0 10px;
}

.single-photo .vintage-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Vintage Photo Frame Effect */
.vintage-frame {
  position: relative;
  padding: 20px;
  background: linear-gradient(45deg, #f4f1e8, #e8e0d0);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
  margin: 0 10px;
}

.vintage-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #8b7355;
  border-radius: 15px;
  pointer-events: none;
}

.vintage-frame .vintage-photo {
  border: none;
  border-radius: 10px;
}

/* Mobile Styles - Enhanced Responsiveness */
@media only screen and (max-width: 700px) {
  .vintage-photo-container {
    margin: 15px 0;
    padding: 0 5px;
  }
  
  .vintage-photo {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 100%;
  }
  
  .vintage-photo:hover {
    transform: none; /* Disable hover effects on mobile */
  }
  
  .vintage-photo-caption {
    font-size: 0.75rem;
    margin-top: 8px;
    padding: 0 5px;
    line-height: 1.3;
  }
  
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 15px 0;
  }
  
  .photo-grid .vintage-photo {
    height: 180px;
    width: 100%;
  }
  
  .single-photo {
    max-width: 100%;
    margin: 15px auto;
    padding: 0 5px;
  }
  
  .single-photo .vintage-photo {
    height: 220px;
    width: 100%;
  }
  
  .vintage-frame {
    padding: 10px;
    border-radius: 12px;
    margin: 0 5px;
  }
  
  .vintage-frame::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 8px;
  }
  
  .vintage-frame .vintage-photo {
    border-radius: 6px;
  }
}

/* Tablet Styles - Enhanced Responsiveness */
@media only screen and (min-width: 700px) and (max-width: 1023px) {
  .vintage-photo-container {
    margin: 20px 0;
    padding: 0 10px;
  }
  
  .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .photo-grid .vintage-photo {
    height: 200px;
  }
  
  .single-photo {
    max-width: 450px;
    padding: 0 10px;
  }
  
  .single-photo .vintage-photo {
    height: 280px;
  }
  
  .vintage-frame {
    padding: 15px;
    margin: 0 10px;
  }
  
  .vintage-photo-caption {
    font-size: 0.85rem;
    padding: 0 10px;
  }
}
.vintage-photo-container {
  margin: 30px 0;
  text-align: center;
}

.vintage-photo {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  filter: sepia(20%) contrast(1.1) brightness(1.05);
  transition: all 0.3s ease;
  border: 3px solid #f5f5f5;
}

.vintage-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  filter: sepia(10%) contrast(1.15) brightness(1.1);
}

.vintage-photo-caption {
  margin-top: 15px;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.photo-grid .vintage-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.single-photo {
  max-width: 500px;
  margin: 30px auto;
}

.single-photo .vintage-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Vintage Photo Frame Effect */
.vintage-frame {
  position: relative;
  padding: 20px;
  background: linear-gradient(45deg, #f4f1e8, #e8e0d0);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.vintage-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #8b7355;
  border-radius: 15px;
  pointer-events: none;
}

.vintage-frame .vintage-photo {
  border: none;
  border-radius: 10px;
}

