@@ -356,24 +356,28 @@ html.dark .article-card .summary {
356356 border-left-color : # 87ceeb !important ; /* Same border color as light mode */
357357}
358358
359- /* Make experience and education headings lowercase - Target specific Hugo Blox structure */
360- .blox-resume-experience h3 {
359+ /* Make ONLY the main section headings "experience" and "education" lowercase - very specific targeting */
360+ .blox-resume-experience > div > h3 : first-child ,
361+ .blox-resume-experience > div > h3 : nth-child (2 ) {
361362 text-transform : lowercase !important ;
362363}
363364
364- /* Target the specific section ID */
365- # section-resume-experience h3 {
365+ /* Target only the main section headings, not job titles */
366+ # section-resume-experience > div > h3 : first-child ,
367+ # section-resume-experience > div > h3 : nth-child (2 ) {
366368 text-transform : lowercase !important ;
367369}
368370
369- /* Target h3 elements with specific classes */
370- h3 .mb-6 .text-3xl .font-bold {
371+ /* Target only the main section headings with specific classes */
372+ .blox-resume-experience h3 .mb-6 .text-3xl .font-bold .text-gray-900 .dark\\ : text-white .text-center : first-of-type ,
373+ .blox-resume-experience h3 .mb-6 .text-3xl .font-bold .text-gray-900 .dark\\ : text-white .text-center : nth-of-type (2 ) {
371374 text-transform : lowercase !important ;
372375}
373376
374- /* More specific targeting for the resume experience section */
375- .blox-resume-experience h3 .mb-6 .text-3xl .font-bold .text-gray-900 .dark\\ : text-white .text-center {
376- text-transform : lowercase !important ;
377+ /* Ensure job titles and other content are NOT affected */
378+ .blox-resume-experience h3 .flex .items-center ,
379+ .blox-resume-experience h3 : not (.mb-6 .text-3xl .font-bold .text-gray-900 .dark\\ : text-white .text-center ) {
380+ text-transform : none !important ;
377381}
378382
379383/* Wider content layout for landing page - same as publications page */
0 commit comments