all4women.co.za Ads.txt file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="https://media.citizen.co.za/assets/img/citizen-icon.png" type="image/x-icon" />
<!-- InMobi Choice. Consent Manager Tag v3.0 (for TCF 2.2) -->
<script type="text/javascript" async=true>
(function() {
var host = window.location.hostname;
var element = document.createElement('script');
var firstScript = document.getElementsByTagName('script')[0];
var url = 'https://cmp.inmobi.com'
.concat('/choice/', 'LHJgbPCrB8EtE', '/', host, '/choice.js?tag_version=V3');
var uspTries = 0;
var uspTriesLimit = 3;
element.async = true;
element.type = 'text/javascript';
element.src = url;
firstScript.parentNode.insertBefore(element, firstScript);
function makeStub() {
var TCF_LOCATOR_NAME = '__tcfapiLocator';
var queue = [];
var win = window;
var cmpFrame;
function addFrame() {
var doc = win.document;
var otherCMP = !!(win.frames[TCF_LOCATOR_NAME]);
if (!otherCMP) {
if (doc.body) {
var iframe = doc.createElement('iframe');
iframe.style.cssText = 'display:none';
iframe.name = TCF_LOCATOR_NAME;
doc.body.appendChild(iframe);
} else {
setTimeout(addFrame, 5);
}
}
return !otherCMP;
}
function tcfAPIHandler() {
var gdprApplies;
var args = arguments;
if (!args.length) {
return queue;
} else if (args[0] === 'setGdprApplies') {
if (
args.length > 3 &&
args[2] === 2 &&
typeof args[3] === 'boolean'
) {
gdprApplies = args[3];
if (typeof args[2] === 'function') {
args[2]('set', true);
}
}
} else if (args[0] === 'ping') {
var retr = {
gdprApplies: gdprApplies,
cmpLoaded: false,
cmpStatus: 'stub'
};
if (typeof args[2] === 'function') {
args[2](retr);
}
} else {
if(args[0] === 'init' && typeof args[3] === 'object') {
args[3] = Object.assign(args[3], { tag_version: 'V3' });
}
queue.push(args);
}
}
function postMessageEventHandler(event) {
var msgIsString = typeof event.data === 'string';
var json = {};
try {
if (msgIsString) {
json = JSON.parse(event.data);
} else {
json = event.data;
}
} catch (ignore) {}
var payload = json.__tcfapiCall;
if (payload) {
window.__tcfapi(
payload.command,
payload.version,
function(retValue, success) {
var returnMsg = {
__tcfapiReturn: {
returnValue: retValue,
success: success,
callId: payload.callId
}
};
if (msgIsString) {
returnMsg = JSON.stringify(returnMsg);
}
if (event && event.source && event.source.postMessage) {
event.source.postMessage(returnMsg, '*');
}
},
payload.parameter
);
}
}
while (win) {
try {
if (win.frames[TCF_LOCATOR_NAME]) {
cmpFrame = win;
break;
}
} catch (ignore) {}
if (win === window.top) {
break;
}
win = win.parent;
}
if (!cmpFrame) {
addFrame();
win.__tcfapi = tcfAPIHandler;
win.addEventListener('message', postMessageEventHandler, false);
}
};
makeStub();
function makeGppStub() {
const CMP_ID = 10;
const SUPPORTED_APIS = [
'2:tcfeuv2',
'6:uspv1',
'7:usnatv1',
'8:usca',
'9:usvav1',
'10:uscov1',
'11:usutv1',
'12:usctv1'
];
window.__gpp_addFrame = function (n) {
if (!window.frames[n]) {
if (document.body) {
var i = document.createElement("iframe");
i.style.cssText = "display:none";
i.name = n;
document.body.appendChild(i);
} else {
window.setTimeout(window.__gpp_addFrame, 10, n);
}
}
};
window.__gpp_stub = function () {
var b = arguments;
__gpp.queue = __gpp.queue || [];
__gpp.events = __gpp.events || [];
if (!b.length || (b.length == 1 && b[0] == "queue")) {
return __gpp.queue;
}
if (b.length == 1 && b[0] == "events") {
return __gpp.events;
}
var cmd = b[0];
var clb = b.length > 1 ? b[1] : null;
var par = b.length > 2 ? b[2] : null;
if (cmd === "ping") {
clb(
{
gppVersion: "1.1", // must be “Version.Subversion”, current: “1.1”
cmpStatus: "stub", // possible values: stub, loading, loaded, error
cmpDisplayStatus: "hidden", // possible values: hidden, visible, disabled
signalStatus: "not ready", // possible values: not ready, ready
supportedAPIs: SUPPORTED_APIS, // list of supported APIs
cmpId: CMP_ID, // IAB assigned CMP ID, may be 0 during stub/loading
sectionList: [],
applicableSections: [-1],
gppString: "",
parsedSections: {},
},
true
);
} else if (cmd === "addEventListener") {
if (!("lastId" in __gpp)) {
__gpp.lastId = 0;
}
__gpp.lastId++;
var lnr = __gpp.lastId;
__gpp.events.push({
id: lnr,
callback: clb,
parameter: par,
});
clb(
{
eventName: "listenerRegistered",
listenerId: lnr, // Registered ID of the listener
data: true, // positive signal
pingData: {
gppVersion: "1.1", // must be “Version.Subversion”, current: “1.1”
cmpStatus: "stub", // possible values: stub, loading, loaded, error
cmpDisplayStatus: "hidden", // possible values: hidden, visible, disabled
signalStatus: "not ready", // possible values: not ready, ready
supportedAPIs: SUPPORTED_APIS, // list of supported APIs
cmpId: CMP_ID, // list of supported APIs
sectionList: [],
applicableSections: [-1],
gppString: "",
parsedSections: {},
},
},
true
);
} else if (cmd === "removeEventListener") {
var success = false;
for (var i = 0; i < __gpp.events.length; i++) {
if (__gpp.events[i].id == par) {
__gpp.events.splice(i, 1);
success = true;
break;
}
}
clb(
{
eventName: "listenerRemoved",
listenerId: par, // Registered ID of the listener
data: success, // status info
pingData: {
gppVersion: "1.1", // must be “Version.Subversion”, current: “1.1”
cmpStatus: "stub", // possible values: stub, loading, loaded, error
cmpDisplayStatus: "hidden", // possible values: hidden, visible, disabled
signalStatus: "not ready", // possible values: not ready, ready
supportedAPIs: SUPPORTED_APIS, // list of supported APIs
cmpId: CMP_ID, // CMP ID
sectionList: [],
applicableSections: [-1],
gppString: "",
parsedSections: {},
},
},
true
);
} else if (cmd === "hasSection") {
clb(false, true);
} else if (cmd === "getSection" || cmd === "getField") {
clb(null, true);
}
//queue all other commands
else {
__gpp.queue.push([].slice.apply(b));
}
};
window.__gpp_msghandler = function (event) {
var msgIsString = typeof event.data === "string";
try {
var json = msgIsString ? JSON.parse(event.data) : event.data;
} catch (e) {
var json = null;
}
if (typeof json === "object" && json !== null && "__gppCall" in json) {
var i = json.__gppCall;
window.__gpp(
i.command,
function (retValue, success) {
var returnMsg = {
__gppReturn: {
returnValue: retValue,
success: success,
callId: i.callId,
},
};
event.source.postMessage(msgIsString ? JSON.stringify(returnMsg) : returnMsg, "*");
},
"parameter" in i ? i.parameter : null,
"version" in i ? i.version : "1.1"
);
}
};
if (!("__gpp" in window) || typeof window.__gpp !== "function") {
window.__gpp = window.__gpp_stub;
window.addEventListener("message", window.__gpp_msghandler, false);
window.__gpp_addFrame("__gppLocator");
}
};
makeGppStub();
var uspStubFunction = function() {
var arg = arguments;
if (typeof window.__uspapi !== uspStubFunction) {
setTimeout(function() {
if (typeof window.__uspapi !== 'undefined') {
window.__uspapi.apply(window.__uspapi, arg);
}
}, 500);
}
};
var checkIfUspIsReady = function() {
uspTries++;
if (window.__uspapi === uspStubFunction && uspTries < uspTriesLimit) {
console.warn('USP is not accessible');
} else {
clearInterval(uspInterval);
}
};
if (typeof window.__uspapi === 'undefined') {
window.__uspapi = uspStubFunction;
var uspInterval = setInterval(checkIfUspIsReady, 6000);
}
})();
</script>
<!-- End InMobi Choice. Consent Manager Tag v3.0 (for TCF 2.2) -->
<!-- Begin OneSignal Web Push -->
<script src="https://cdn.onesignal.com/sdks/web/v16/OneSignalSDK.page.js" defer></script> <script>
window.OneSignalDeferred = window.OneSignalDeferred || [];
OneSignalDeferred.push(async function(OneSignal) {
await OneSignal.init({ appId: "e2cda81b-c368-4f94-a3dd-21c255eb42c9" });
});
</script>
<!-- End OneSignal Web Push -->
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
<!-- This site is optimized with the Yoast SEO Premium plugin v25.7.1 (Yoast SEO v25.7) - https://yoast.com/wordpress/plugins/seo/ -->
<title>Lifestyle stories, breaking news and comment | The Citizen</title>
<link crossorigin data-rocket-preconnect href="https://media.citizen.co.za" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://api.onesignal.com" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://connect.facebook.net" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://www.googletagmanager.com" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://tt.onthe.io" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://cmp.inmobi.com" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://cdn.onesignal.com" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://securepubads.g.doubleclick.net" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://fundingchoicesmessages.google.com" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://cdn.onthe.io" rel="preconnect">
<link data-rocket-preload as="style" href="https://fonts.googleapis.com/css?family=Lato%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900%2C100i%2C200i%2C300i%2C400i%2C500i%2C600i%2C700i%2C800i%2C900i&display=swap" rel="preload">
<link href="https://fonts.googleapis.com/css?family=Lato%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900%2C100i%2C200i%2C300i%2C400i%2C500i%2C600i%2C700i%2C800i%2C900i&display=swap" media="print" onload="this.media='all'" rel="stylesheet">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900%2C100i%2C200i%2C300i%2C400i%2C500i%2C600i%2C700i%2C800i%2C900i&display=swap"></noscript>
<meta name="description" content="The Citizen’s lifestyle section covers a wide range of lifestyle topics and issues from South African and global celebrity news to fashion and food." />
<link rel="canonical" href="https://www.citizen.co.za/lifestyle/" />
<link rel="next" href="https://www.citizen.co.za/lifestyle/page/2/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Lifestyle | The Citizen" />
<meta property="og:description" content="The Citizen’s lifestyle section covers a wide range of lifestyle topics and issues from South African and global celebrity news to fashion and food." />
<meta property="og:url" content="https://www.citizen.co.za/lifestyle/" />
<meta property="og:site_name" content="The Citizen" />
<meta property="og:image" content="https://media.citizen.co.za/wp-content/uploads/2024/04/citizen-social.jpg" />
<meta property="og:image:width" content="1500" />
<meta property="og:image:height" content="1000" />
<meta property="og:image:type" content="image/jpeg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@TheCitizen_News" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"CollectionPage","@id":"https://www.citizen.co.za/lifestyle/","url":"https://www.citizen.co.za/lifestyle/","name":"Lifestyle stories, breaking news and comment | The Citizen","isPartOf":{"@id":"https://www.citizen.co.za/#website"},"primaryImageOfPage":{"@id":"https://www.citizen.co.za/lifestyle/#primaryimage"},"image":{"@id":"https://www.citizen.co.za/lifestyle/#primaryimage"},"thumbnailUrl":"https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig.jpg","description":"The Citizen’s lifestyle section covers a wide range of lifestyle topics and issues from South African and global celebrity news to fashion and food.","breadcrumb":{"@id":"https://www.citizen.co.za/lifestyle/#breadcrumb"},"inLanguage":"en-ZA"},{"@type":"ImageObject","inLanguage":"en-ZA","@id":"https://www.citizen.co.za/lifestyle/#primaryimage","url":"https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig.jpg","contentUrl":"https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig.jpg","width":1200,"height":800,"caption":"Zodwa Wabantu is unwilling to pay back the money she owes a club owner. Picture: zodwalibram/Instagram"},{"@type":"BreadcrumbList","@id":"https://www.citizen.co.za/lifestyle/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.citizen.co.za/"},{"@type":"ListItem","position":2,"name":"Lifestyle"}]},{"@type":"WebSite","@id":"https://www.citizen.co.za/#website","url":"https://www.citizen.co.za/","name":"The Citizen","description":"More News Your Way","publisher":{"@id":"https://www.citizen.co.za/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.citizen.co.za/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-ZA"},{"@type":"Organization","@id":"https://www.citizen.co.za/#organization","name":"The Citizen","alternateName":"The Citizen","url":"https://www.citizen.co.za/","logo":{"@type":"ImageObject","inLanguage":"en-ZA","@id":"https://www.citizen.co.za/#/schema/logo/image/","url":"https://media.citizen.co.za/wp-content/uploads/2022/07/The-Citizen-Latest-News-South-Africa-World.png","contentUrl":"https://media.citizen.co.za/wp-content/uploads/2022/07/The-Citizen-Latest-News-South-Africa-World.png","width":1881,"height":1000,"caption":"The Citizen"},"image":{"@id":"https://www.citizen.co.za/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/TheCitizenNewsSA","https://x.com/TheCitizen_News","https://www.facebook.com/citizenmotoring/","https://www.facebook.com/Citizencitilife/","https://www.facebook.com/phakaaathi/","https://www.facebook.com/citizensport/","https://en.wikipedia.org/wiki/The_Citizen_(South_African_newspaper)","https://www.youtube.com/channel/UC6W8rnMBwnzioz-3-8jH0-w","https://www.instagram.com/thecitizen_news/","https://www.tiktok.com/@thecitizen_news","https://www.whatsapp.com/channel/0029VaC6h5cGpLHZ59q2Ei2Q","https://www.linkedin.com/company/citizen/","https://flipboard.com/@TheCitizenNews"],"description":"The Citizen is a South African daily newspaper published in Johannesburg, South Africa. The newspaper is distributed nationally in South Africa. It has long been considered a newspaper of record in South Africa.","email":"online@citizen.co.za","telephone":"+27 (0)10 976 4222","legalName":"The Citizen, a division of CTP","foundingDate":"1976-08-06","vatID":"4940105440","duns":"567484720","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"501","maxValue":"1000"},"publishingPrinciples":"https://www.citizen.co.za/disciplinary-codes-procedures-and-guidelines/","ownershipFundingInfo":"https://www.citizen.co.za/disciplinary-codes-procedures-and-guidelines/","actionableFeedbackPolicy":"https://www.citizen.co.za/the-press-code-of-ethics-and-conduct-for-south-african-print-and-online-media/","correctionsPolicy":"https://www.citizen.co.za/the-press-code-of-ethics-and-conduct-for-south-african-print-and-online-media/","ethicsPolicy":"https://www.citizen.co.za/disciplinary-codes-procedures-and-guidelines/","diversityPolicy":"https://www.citizen.co.za/disciplinary-codes-procedures-and-guidelines/","diversityStaffingReport":"https://www.citizen.co.za/disciplinary-codes-procedures-and-guidelines/"}]}</script>
<!-- / Yoast SEO Premium plugin. -->
<link rel="alternate" type="application/rss+xml" title="The Citizen » Lifestyle Category Feed" href="https://www.citizen.co.za/lifestyle/feed/" />
<style id='wp-emoji-styles-inline-css' type='text/css'>
img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://www.citizen.co.za/wp-includes/css/dist/block-library/style.min.css?ver=6.8.2' type='text/css' media='all' />
<style id='classic-theme-styles-inline-css' type='text/css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<style id='create-block-videojs-style-inline-css' type='text/css'>
.wp-block-create-block-videojs{color:#fff;padding:2px}.wp-block-widget-area img{width:100%}
</style>
<style id='global-styles-inline-css' type='text/css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<link data-minify="1" rel='stylesheet' id='main-css' href='https://www.citizen.co.za/wp-content/cache/min/1/wp-content/themes/citizen-2023/dist/assets/main-BVah2Fi9.css?ver=1756974177' type='text/css' media='all' />
<style id='rocket-lazyload-inline-css' type='text/css'>
.rll-youtube-player{position:relative;padding-bottom:56.23%;height:0;overflow:hidden;max-width:100%;}.rll-youtube-player:focus-within{outline: 2px solid currentColor;outline-offset: 5px;}.rll-youtube-player iframe{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;background:0 0}.rll-youtube-player img{bottom:0;display:block;left:0;margin:auto;max-width:100%;width:100%;position:absolute;right:0;top:0;border:none;height:auto;-webkit-transition:.4s all;-moz-transition:.4s all;transition:.4s all}.rll-youtube-player img:hover{-webkit-filter:brightness(75%)}.rll-youtube-player .play{height:100%;width:100%;left:0;top:0;position:absolute;background:url(https://www.citizen.co.za/wp-content/plugins/wp-rocket/assets/img/youtube.png) no-repeat center;background-color: transparent !important;cursor:pointer;border:none;}
</style>
<script type="text/javascript" src="https://www.citizen.co.za/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js" data-rocket-defer defer></script>
<script type="text/javascript" src="https://www.citizen.co.za/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js" data-rocket-defer defer></script>
<script>
document.addEventListener( "DOMContentLoaded", function() {
var div, i,
youtubePlayers = document.getElementsByClassName( "video-seo-youtube-player" );
for ( i = 0; i < youtubePlayers.length; i++ ) {
div = document.createElement( "div" );
div.className = "video-seo-youtube-embed-loader";
div.setAttribute( "data-id", youtubePlayers[ i ].dataset.id );
div.setAttribute( "tabindex", "0" );
div.setAttribute( "role", "button" );
div.setAttribute(
"aria-label", "Load YouTube video"
);
div.innerHTML = videoSEOGenerateYouTubeThumbnail( youtubePlayers[ i ].dataset.id );
div.addEventListener( "click", videoSEOGenerateYouTubeIframe );
div.addEventListener( "keydown", videoSEOYouTubeThumbnailHandleKeydown );
div.addEventListener( "keyup", videoSEOYouTubeThumbnailHandleKeyup );
youtubePlayers[ i ].appendChild( div );
}
} );
function videoSEOGenerateYouTubeThumbnail( id ) {
var thumbnail = '<picture class="video-seo-youtube-picture">\n' +
'<source class="video-seo-source-to-maybe-replace" media="(min-width: 801px)" srcset="https://i.ytimg.com/vi/' + id + '/maxresdefault.jpg" >\n' +
'<source class="video-seo-source-hq" media="(max-width: 800px)" srcset="https://i.ytimg.com/vi/' + id + '/hqdefault.jpg">\n' +
'<img onload="videoSEOMaybeReplaceMaxResSourceWithHqSource( event );" src="https://i.ytimg.com/vi/' + id + '/hqdefault.jpg" width="480" height="360" loading="eager" alt="">\n' +
'</picture>\n',
play = '<div class="video-seo-youtube-player-play"></div>';
return thumbnail.replace( "ID", id ) + play;
}
function videoSEOMaybeReplaceMaxResSourceWithHqSource( event ) {
var sourceMaxRes,
sourceHighQuality,
loadedThumbnail = event.target,
parent = loadedThumbnail.parentNode;
if ( loadedThumbnail.naturalWidth < 150 ) {
sourceMaxRes = parent.querySelector(".video-seo-source-to-maybe-replace");
sourceHighQuality = parent.querySelector(".video-seo-source-hq");
sourceMaxRes.srcset = sourceHighQuality.srcset;
parent.className = "video-seo-youtube-picture video-seo-youtube-picture-replaced-srcset";
}
}
function videoSEOYouTubeThumbnailHandleKeydown( event ) {
if ( event.keyCode !== 13 && event.keyCode !== 32 ) {
return;
}
if ( event.keyCode === 13 ) {
videoSEOGenerateYouTubeIframe( event );
}
if ( event.keyCode === 32 ) {
event.preventDefault();
}
}
function videoSEOYouTubeThumbnailHandleKeyup( event ) {
if ( event.keyCode !== 32 ) {
return;
}
videoSEOGenerateYouTubeIframe( event );
}
function videoSEOGenerateYouTubeIframe( event ) {
var el = ( event.type === "click" ) ? this : event.target,
iframe = document.createElement( "iframe" );
iframe.setAttribute( "src", "https://www.youtube.com/embed/" + el.dataset.id + "?autoplay=1&enablejsapi=1&origin=https%3A%2F%2Fwww.citizen.co.za" );
iframe.setAttribute( "frameborder", "0" );
iframe.setAttribute( "allowfullscreen", "1" );
iframe.setAttribute( "allow", "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" );
el.parentNode.replaceChild( iframe, el );
}
</script>
<script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script id="googletag-advert-loader">
let slots = {}
googletag = window.googletag || {};
googletag.cmd = googletag.cmd || [];
googletag.cmd.push(function() {
let desktop = googletag.sizeMapping()
.addSize([320, 100], [])
.addSize([480, 100], [])
.addSize([640, 100], [])
.addSize([730, 100], [[728, 90]])
.addSize([972, 100], [[728, 90], [970, 90]])
.addSize([1200, 100], [[728, 90], [970, 90]])
.build();
let desktop_skyscraper = googletag.sizeMapping()
.addSize([320, 100], [])
.addSize([480, 100], [])
.addSize([640, 100], [])
.addSize([730, 100], [[728, 90]])
.addSize([972, 100], [[160, 600]])
.addSize([1200, 100], [[160, 600]])
.build();
let desktop_small = googletag.sizeMapping()
.addSize([320, 100], [])
.addSize([480, 100], [])
.addSize([640, 100], [])
.addSize([730, 100], [[300, 250], [300, 600]])
.addSize([972, 100], [[300, 250], [300, 600]])
.addSize([1200, 100], [[300, 250], [300, 600]])
.build();
let desktop_small_limited = googletag.sizeMapping()
.addSize([320, 100], [])
.addSize([480, 100], [])
.addSize([640, 100], [])
.addSize([730, 100], [[300, 250]])
.addSize([972, 100], [[300, 250]])
.addSize([1200, 100], [[300, 250]])
.build();
let mobile_single = googletag.sizeMapping()
.addSize([320, 100], [[300, 250], [336, 280]])
.addSize([480, 100], [[300, 250], [336, 280]])
.addSize([640, 100], [[300, 250], [336, 280]])
.addSize([730, 100], [])
.addSize([972, 100], [])
.addSize([1200, 100], [])
.build();
let mobile_sticky = googletag.sizeMapping()
.addSize([320, 100], [[320,50]])
.addSize([480, 100], [[320,50]])
.addSize([640, 100], [[320,50]])
.addSize([730, 100], [])
.addSize([972, 100], [])
.addSize([1200, 100], [])
.build();
let mobile_multi = googletag.sizeMapping()
.addSize([320, 100], [[320,480], [300, 250], [300, 600], [336, 280]])
.addSize([480, 100], [[320,480], [300, 250], [300, 600], [336, 280]])
.addSize([640, 100], [[320,480], [300, 250], [300, 600], [336, 280]])
.addSize([730, 100], [])
.addSize([972, 100], [])
.addSize([1200, 100], [])
.build();
slots['google-ad-d-leader'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-leader", [[728,90], [970,90]],"google-ad-d-leader").defineSizeMapping(desktop).addService(googletag.pubads());
slots['google-ad-d-mpu1'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-mpu1", [[300,250], [300,600]],"google-ad-d-mpu1").defineSizeMapping(desktop_small).addService(googletag.pubads());
slots['google-ad-d-mpu2'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-mpu2", [[300,250], [300,600]],"google-ad-d-mpu2").defineSizeMapping(desktop_small).addService(googletag.pubads());
slots['google-ad-d-mpu3'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-mpu3", [[300,250], [300,600]],"google-ad-d-mpu3").defineSizeMapping(desktop_small).addService(googletag.pubads());
slots['google-ad-d-mpu4'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-mpu4", [[300,250], [300,600]],"google-ad-d-mpu4").defineSizeMapping(desktop_small).addService(googletag.pubads());
slots['google-ad-d-mpu-incontent'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-mpu-incontent", [[300,250], "fluid"],"google-ad-d-mpu-incontent").defineSizeMapping(desktop_small_limited).addService(googletag.pubads());
slots['google-ad-d-sky-1'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-sky-1", [[160,600]],"google-ad-d-sky-1").defineSizeMapping(desktop_skyscraper).addService(googletag.pubads());
slots['google-ad-d-sky-2'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-sky-2", [[160,600]],"google-ad-d-sky-2").defineSizeMapping(desktop_skyscraper).addService(googletag.pubads());
slots['google-ad-m-og-mpu1'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-mob-og/m-og-mpu1", [[300,250], [336,280], "fluid"],"google-ad-m-og-mpu1").defineSizeMapping(mobile_single).addService(googletag.pubads());
slots['google-ad-m-og-mpu2'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-mob-og/m-og-mpu2", [[300,250], [300,600], [320,480], [336,280], "fluid"],"google-ad-m-og-mpu2").defineSizeMapping(mobile_multi).addService(googletag.pubads());
slots['google-ad-m-og-mpu3'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-mob-og/m-og-mpu3", [[300,250], [300,600], [320,480], [336,280], "fluid"],"google-ad-m-og-mpu3").defineSizeMapping(mobile_multi).addService(googletag.pubads());
slots['google-ad-m-og-mpu4'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-mob-og/m-og-mpu4", [[300,250], [300,600], [320,480], [336,280], "fluid"],"google-ad-m-og-mpu4").defineSizeMapping(mobile_multi).addService(googletag.pubads());
slots['google-ad-m-og-mpu5'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-mob-og/m-og-mpu5", [[300,250], [300,600], [320,480], [336,280], "fluid"],"google-ad-m-og-mpu5").defineSizeMapping(mobile_multi).addService(googletag.pubads());
slots['google-ad-m-og-mpu6'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-mob-og/m-og-mpu6", [[300,250], [300,600], [320,480], [336,280], "fluid"],"google-ad-m-og-mpu6").defineSizeMapping(mobile_multi).addService(googletag.pubads());
googletag.defineOutOfPageSlot("/22707993172/citizen-co-za/ct-desktop/d-oop","google-ad-d-oop").addService(googletag.pubads());
slots['ct-anchor'] = googletag.defineOutOfPageSlot("/22707993172/citizen-co-za/ct-anchor", googletag.enums.OutOfPageFormat.BOTTOM_ANCHOR);
if(slots['ct-anchor']){
slots['ct-anchor'].addService(googletag.pubads());
}
slots['interstitial'] = googletag.defineOutOfPageSlot("/22707993172/premium-inventory/interstitial", googletag.enums.OutOfPageFormat.INTERSTITIAL);
if(slots['interstitial']){
slots['interstitial'].addService(googletag.pubads());
}
googletag.pubads().enableSingleRequest();
googletag.pubads().collapseEmptyDivs();
googletag.pubads().setTargeting('ct-category', 'lifestyle,c-lifestyle');
googletag.pubads().setTargeting('ct-tag', '');
googletag.pubads().setTargeting('ct-article-id', '');
googletag.pubads().enableLazyLoad({
fetchMarginPercent: 100, // Fetch slots within 1 viewports.
renderMarginPercent: 50, // Render slots within 0.5 viewports.
mobileScaling: 2.0 // Double the above values on mobile.
});
googletag.enableServices();
});
</script>
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-N6K7RKV');
</script><noscript><style id="rocket-lazyload-nojs-css">.rll-youtube-player, [data-lazy-src]{display:none !important;}</style></noscript>
<link rel="preload"
as="image"
href="https://media.citizen.co.za/assets/img/citizen.png"
imagesrcset=""
id="preloaded-image-0-0">
<link rel="preload"
as="image"
href="https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-825x550.jpg"
imagesrcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig.jpg 1200w"
id="preloaded-image-4142598-4142641">
<link rel="preload"
as="image"
href="https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-825x550.jpg"
imagesrcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary.jpg 1200w"
id="preloaded-image-4142504-4142566">
<link rel="preload"
as="image"
href="https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-825x550.jpg"
imagesrcset="https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza.jpg 1500w"
id="preloaded-image-4142365-4142416">
<link rel="preload"
as="image"
href="https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-825x550.jpg"
imagesrcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia.jpg 1200w"
id="preloaded-image-4142322-4142388">
<link rel="preload"
as="image"
href="https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-825x550.jpg"
imagesrcset="https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award.jpg 1200w"
id="preloaded-image-4142327-4142391">
<link rel="preload"
as="image"
href="https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-825x550.jpg"
imagesrcset="https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation.jpg 1200w"
id="preloaded-image-4142195-4142235">
<style id="rocket-lazyrender-inline-css">[data-wpr-lazyrender] {content-visibility: auto;}</style></head>
<body class="archive category category-lifestyle category-117 wp-theme-citizen-2023">
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-N6K7RKV" height="0" width="0" style="display:none;visibility:hidden">
</iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="flex flex-col min-h-screen">
<div class="adunit-top">
<div
id="google-ad-d-leader-to-close"
class="text-center text-center mt-3 mb-3 ">
<div id="google-ad-d-leader">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-d-leader');
});
</script>
</div>
</div>
</div>
<header class="main-header">
<div class="grid grid-cols-5 md:grid-cols-3 h-full">
<div class="header-brands">
<a class="citizen-icon" data-type="icon" data-brand="citizen" href="/">
<img class="icon" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Citizen logo Icon in header - left" data-lazy-src="https://media.citizen.co.za/assets/img/citizen-icon.png" /><noscript><img class="icon" src="https://media.citizen.co.za/assets/img/citizen-icon.png" alt="Citizen logo Icon in header - left" /></noscript>
</a>
<a class="citizen-logo" data-type="logo" data-brand="citizen" href="/">
<img class="logo" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Citizen logo in header - left" data-lazy-src="https://media.citizen.co.za/assets/img/citizen.png" /><noscript><img class="logo" src="https://media.citizen.co.za/assets/img/citizen.png" alt="Citizen logo in header - left" /></noscript>
</a>
<a class="phakaaathi-icon" data-type="icon" data-brand="phakaaathi" href="/phakaaathi">
<img class="icon" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Phakaaathi logo icon in header - left" data-lazy-src="https://media.citizen.co.za/assets/img/phakaaathi-icon.png" /><noscript><img class="icon" src="https://media.citizen.co.za/assets/img/phakaaathi-icon.png" alt="Phakaaathi logo icon in header - left" /></noscript>
</a>
<a class="phakaaathi-logo" data-type="logo" data-brand="phakaaathi" href="/phakaaathi">
<img class="logo" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Phakaaathi logo in header - left" data-lazy-src="https://media.citizen.co.za/assets/img/phakaaathi-logo.png" /><noscript><img class="logo" src="https://media.citizen.co.za/assets/img/phakaaathi-logo.png" alt="Phakaaathi logo in header - left" /></noscript>
</a>
<a class="local-news-icon" data-type="icon" data-brand="local-news" href="/local-newspapers">
<img class="icon" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Caxton logo icon in header - left" data-lazy-src="https://media.citizen.co.za/assets/img/caxton-local-news-icon.png" /><noscript><img class="icon" src="https://media.citizen.co.za/assets/img/caxton-local-news-icon.png" alt="Caxton logo icon in header - left" /></noscript>
</a>
<a class="local-news-logo" data-type="logo" data-brand="local-news" href="/local-newspapers">
<img class="logo" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Caxton logo in header - left" data-lazy-src="https://media.citizen.co.za/assets/img/caxton-local-news-wider.png" /><noscript><img class="logo" src="https://media.citizen.co.za/assets/img/caxton-local-news-wider.png" alt="Caxton logo in header - left" /></noscript>
</a>
</div>
<div class="header-menu">
<button type="button" class="navbar-toggle" data-control="open">
<span class="navbar-toggle-icon">
<i class="citizenicons-bars"></i>
</span>
</button>
<div class="backdrop backdrop-blur">
<div class="mobile-menu-wrapper">
<div class="mobile-menu-header">
<img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Citizen logo on mobile menu" data-lazy-src="https://media.citizen.co.za/assets/img/citizen.png" /><noscript><img src="https://media.citizen.co.za/assets/img/citizen.png" alt="Citizen logo on mobile menu" /></noscript>
<button type="button" class="navbar-toggle" data-control="close">
<span class="navbar-toggle-icon">
<i class="citizenicons-bars"></i>
</span>
</button>
</div>
<div class="mobile-menu-content">
<form
role="search"
method="get"
class="search-form"
action="https://www.citizen.co.za/"
>
<input
type="search"
class="search-field"
placeholder="Search …"
value=""
name="s"
/>
<button type="submit" class="search-submit">
<i class="citizenicons-magnifying-glass"></i>
</button>
</form>
<nav id="mobile-menu">
<div class="menu-mobile-navigation-container"><ul id="menu-mobile-navigation" class="menu"><li id="menu-item-2464251" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464251"><a href="https://www.citizen.co.za/news/">News</a></li>
<li id="menu-item-3409931" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3409931"><a href="https://thecitizen.pressreader.com/the-citizen-gauteng">E-Paper</a></li>
<li id="menu-item-3963563" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3963563"><a href="https://www.citizen.co.za/lotto/">Lotto</a></li>
<li id="menu-item-2464259" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464259"><a href="https://www.citizen.co.za/business/">Business</a></li>
<li id="menu-item-2464264" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464264"><a href="https://www.citizen.co.za/sport/">Sport</a></li>
<li id="menu-item-2464272" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464272"><a href="https://www.citizen.co.za/sport/soccer/">Phakaaathi</a></li>
<li id="menu-item-2464277" class="menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item menu-item-2464277"><a href="https://www.citizen.co.za/lifestyle/" aria-current="page">Lifestyle</a></li>
<li id="menu-item-2464286" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464286"><a href="https://www.citizen.co.za/entertainment/">Entertainment</a></li>
<li id="menu-item-2464295" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464295"><a href="https://www.citizen.co.za/motoring/">Motoring</a></li>
<li id="menu-item-3531545" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3531545"><a href="https://www.citizen.co.za/auctions/">Auctions</a></li>
<li id="menu-item-2464310" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464310"><a href="https://www.citizen.co.za/multimedia/">Multimedia</a></li>
<li id="menu-item-3217086" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3217086"><a href="https://www.citizen.co.za/local-newspapers/">Local News</a></li>
<li id="menu-item-4136364" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4136364"><a href="https://www.citizen.co.za/contact-us/">Contact us</a></li>
<li id="menu-item-3964295" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3964295"><a href="https://www.citizen.co.za/legal-notice/">Legal Notices</a></li>
<li id="menu-item-4095661" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4095661"><a href="https://www.citizen.co.za/job-listing/">Jobs</a></li>
<li id="menu-item-3767189" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3767189"><a href="https://www.citizen.co.za/best-bets/">Betway Best Bets</a></li>
<li id="menu-item-3644259" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3644259"><a href="https://www.citizen.co.za/competitions/">Competitions</a></li>
<li id="menu-item-3807721" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3807721"><a href="https://premium.citizen.co.za/">E-Paper Subscriptions</a></li>
<li id="menu-item-3807732" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3807732"><a href="https://www.citizen.co.za/sign-in/">My Account</a></li>
<li id="menu-item-3966851" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3966851"><a href="https://www.citizen.co.za/newsletter-subscription/">Newsletters</a></li>
</ul></div> </nav>
</div>
</div>
</div>
</div>
<div class="header-logo col-span-2 md:col-span-1">
<a href="/">
<img class="non-print-logo w-40 sm:w-48 md:w-52" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Citizen logo in header - center" data-lazy-src="https://media.citizen.co.za/assets/img/citizen.png" /><noscript><img class="non-print-logo w-40 sm:w-48 md:w-52" src="https://media.citizen.co.za/assets/img/citizen.png" alt="Citizen logo in header - center" /></noscript>
<img class="hidden print-logo w-40 sm:w-48 md:w-52" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Citizen logo in header - center" data-lazy-src="https://media.citizen.co.za/assets/img/citizen-logo.png" /><noscript><img class="hidden print-logo w-40 sm:w-48 md:w-52" src="https://media.citizen.co.za/assets/img/citizen-logo.png" alt="Citizen logo in header - center" /></noscript>
</a>
</div>
<div class="header-extra-mobile col-span-2 md:col-span-1">
<div class="header-search-mobile navigation-search">
<i class="citizenicons-magnifying-glass"></i>
</div>
<div class="header-chery-comp-mobile">
<a href="https://premium.citizen.co.za/" data-google-interstitial="false"><img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" class="w-[93px] h-[34px]" data-lazy-src="https://media.citizen.co.za/assets/img/chery-comp/subscribe-cta-93x34.png"><noscript><img src="https://media.citizen.co.za/assets/img/chery-comp/subscribe-cta-93x34.png" class="w-[93px] h-[34px]"></noscript></a>
</div>
<div class="header-account-mobile">
<button type="button" class="account-icon citizenicons-lock">
<i></i>
</button>
<div class="mobile-account-wrapper">
<ul class="mobile-account-menu">
<li><a href="https://thecitizen.pressreader.com/the-citizen-gauteng" data-google-interstitial="false">E-Paper</a></li>
<li><a href="/sign-in/" data-google-interstitial="false">My Account</a></li>
<li><a href="https://premium.citizen.co.za/" data-google-interstitial="false">Subscribe</a></li>
</ul>
</div>
</div>
</div>
<div class="header-account">
<a href="https://thecitizen.pressreader.com/the-citizen-gauteng" class="btn" data-google-interstitial="false">E-Paper</a>
<a href="/sign-in" class="btn btn-sign-in" data-google-interstitial="false">My Account</a>
<a href="https://premium.citizen.co.za/" class="cta-subscribe" data-google-interstitial="false"><img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" class="w-[109px] h-[40px]" data-lazy-src="https://media.citizen.co.za/assets/img/chery-comp/subscribe-cta-109x40.png"><noscript><img src="https://media.citizen.co.za/assets/img/chery-comp/subscribe-cta-109x40.png" class="w-[109px] h-[40px]"></noscript></a>
</div>
</div>
</header>
<nav id="main-navigation">
<div class="main-navigation-inner">
<div class="menu-main-navigation-container"><ul id="menu-main-navigation" class="menu"><li class=' menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children category-news'><a href="https://www.citizen.co.za/news/">News</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-south-africa'><a href="https://www.citizen.co.za/news/south-africa/">South Africa</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-education'><a href="https://www.citizen.co.za/news/south-africa/education/">Education</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-news-africa'><a href="https://www.citizen.co.za/news/news-world/news-africa/">Africa</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-news-world'><a href="https://www.citizen.co.za/news/news-world/">World</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-lotto'><a href="https://www.citizen.co.za/lotto/">Lotto</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-opinion'><a href="https://www.citizen.co.za/news/opinion/">Opinion</a></li>
</ul>
</li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://thecitizen.pressreader.com/the-citizen-gauteng">E-Paper</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children category-business'><a href="https://www.citizen.co.za/business/">Business</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-personal-finance'><a href="https://www.citizen.co.za/business/personal-finance/">Personal Finance</a></li>
</ul>
</li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children category-sport'><a href="https://www.citizen.co.za/sport/">Sport</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-cricket'><a href="https://www.citizen.co.za/sport/cricket/">Cricket</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-soccer'><a href="https://www.citizen.co.za/sport/soccer/">Soccer</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-rugby'><a href="https://www.citizen.co.za/sport/rugby/">Rugby</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-horses'><a href="https://www.citizen.co.za/sport/horses/">Horses</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-best-bets'><a href="https://www.citizen.co.za/best-bets/">Betway Best Bets</a></li>
</ul>
</li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children category-soccer'><a href="https://www.citizen.co.za/sport/soccer/">Phakaaathi</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-local-soccer'><a href="https://www.citizen.co.za/sport/soccer/local-soccer/">Betway PSL</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-mgosi'><a href="https://www.citizen.co.za/sport/soccer/local-soccer/mgosi/">Mgosi</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-world-soccer'><a href="https://www.citizen.co.za/sport/soccer/world-soccer/">World Soccer</a></li>
</ul>
</li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item menu-item-has-children category-lifestyle'><a href="https://www.citizen.co.za/lifestyle/">Lifestyle</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-entertainment'><a href="https://www.citizen.co.za/entertainment/">Entertainment</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-celebrity-news'><a href="https://www.citizen.co.za/entertainment/celebrity-news/">Celebs And Viral</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-tv'><a href="https://www.citizen.co.za/entertainment/tv/">TV</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-food-and-drink'><a href="https://www.citizen.co.za/lifestyle/food-and-drink/">Food And Drink</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-health'><a href="https://www.citizen.co.za/lifestyle/health/">Health</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-fashion-and-beauty'><a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/">Fashion And Beauty</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-technology'><a href="https://www.citizen.co.za/lifestyle/technology/">Tech and Science</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-travel'><a href="https://www.citizen.co.za/travel/">Travel</a></li>
</ul>
</li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-motoring'><a href="https://www.citizen.co.za/motoring/">Motoring</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-multimedia'><a href="https://www.citizen.co.za/multimedia/">Multimedia</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children category-none'><a href="https://www.citizen.co.za/local-newspapers/">Local News</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/">Free State</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/">Gauteng</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#garden-route">Garden Route</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#kwazulu-natal">KwaZulu-Natal</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#mpumalanga">Mpumalanga</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#limpopo">Limpopo</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#northern-cape">Northern Cape</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#north-west">North West</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#national">National</a></li>
</ul>
</li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/legal-notice/">Legal Notices</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/job-listing/">Jobs</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children category-none'><a href="#">More</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-auctions'><a href="https://www.citizen.co.za/auctions/">Auctions</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-best-bets'><a href="https://www.citizen.co.za/best-bets/">Betway Best Bets</a></li>
<li class=' menu-item menu-item-type-post_type menu-item-object-page category-none'><a href="https://www.citizen.co.za/newsletter-subscription/">Newsletters</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-competitions'><a href="https://www.citizen.co.za/competitions/">Competitions</a></li>
<li class=' menu-item menu-item-type-post_type menu-item-object-page category-none'><a href="https://www.citizen.co.za/about-us/">About</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/authors/">Our team</a></li>
<li class=' menu-item menu-item-type-post_type menu-item-object-page category-none'><a href="https://www.citizen.co.za/advertising/">Advertise with us</a></li>
<li class=' menu-item menu-item-type-post_type menu-item-object-page category-none'><a href="https://www.citizen.co.za/jobs-at-the-citizen/">Jobs at The Citizen</a></li>
<li class=' menu-item menu-item-type-post_type menu-item-object-page category-none'><a href="https://www.citizen.co.za/contact-us/">Contact us</a></li>
</ul>
</li>
<li class='navigation-search menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="#"><i class="citizenicons-magnifying-glass"></i></a></li>
</ul></div><div class="menu-mobile-scroll-container"><ul id="menu-mobile-scroll" class="menu"><li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-news'><a href="https://www.citizen.co.za/news/">News</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://thecitizen.pressreader.com/the-citizen-gauteng">E-Paper</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-lotto'><a href="https://www.citizen.co.za/lotto/">Lotto</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-business'><a href="https://www.citizen.co.za/business/">Business</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-sport'><a href="https://www.citizen.co.za/sport/">Sport</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-soccer'><a href="https://www.citizen.co.za/sport/soccer/">Phakaaathi</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item category-lifestyle'><a href="https://www.citizen.co.za/lifestyle/">Lifestyle</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-entertainment'><a href="https://www.citizen.co.za/entertainment/">Entertainment</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-motoring'><a href="https://www.citizen.co.za/motoring/">Motoring</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-multimedia'><a href="https://www.citizen.co.za/multimedia/">Multimedia</a></li>
<li class=' menu-item menu-item-type-post_type menu-item-object-page category-none'><a href="https://www.citizen.co.za/local-newspapers/">Local News</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/legal-notice/">Legal Notices</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/job-listing/">Jobs</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-auctions'><a href="https://www.citizen.co.za/auctions/">Auctions</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-competitions'><a href="https://www.citizen.co.za/competitions/">Competitions</a></li>
</ul></div>
<form
role="search"
method="get"
class="search-form"
action="https://www.citizen.co.za/"
>
<input
type="search"
class="search-field"
placeholder="Search …"
value=""
name="s"
/>
<button type="submit" class="search-submit">
<i class="citizenicons-magnifying-glass"></i>
</button>
</form>
</div>
</nav>
<main class="flex-auto">
<div class="main-content relative max-w-[990px] mx-auto sm:px-6 lg:px-1 py-2 md:py-4">
<div class="skyscraper-left">
<div class="skyscraper-left-inner">
<div
id="google-ad-d-sky-1-to-close"
class="text-center ">
<div id="google-ad-d-sky-1">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-d-sky-1');
});
</script>
</div>
</div>
</div>
</div>
<div class="skyscraper-right">
<div class="skyscraper-right-inner">
<div
id="google-ad-d-sky-2-to-close"
class="text-center ">
<div id="google-ad-d-sky-2">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-d-sky-2');
});
</script>
</div>
</div>
</div>
</div>
<div class="category-lead-one-wrapper">
<div class="grid grid-cols-1 md:grid-cols-4 gap-4 mb-4">
<div class="">
<div class="category-sidebar bg-category-lifestyle">
<h1 class="widgettitle">Lifestyle</h1><div class="menu-lifestyle-category-menu-container"><ul id="menu-lifestyle-category-menu" class="menu"><li id="menu-item-2464201" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464201"><a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/">Fashion And Beauty</a></li>
<li id="menu-item-3122655" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3122655"><a href="https://www.citizen.co.za/lifestyle/health/">Health</a></li>
<li id="menu-item-2464196" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464196"><a href="https://www.citizen.co.za/lifestyle/food-and-drink/">Food And Drink</a></li>
<li id="menu-item-3268208" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3268208"><a href="https://www.citizen.co.za/lifestyle/technology/">Tech and Science</a></li>
<li id="menu-item-3531534" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3531534"><a href="https://www.citizen.co.za/travel/">Travel</a></li>
</ul></div> </div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 md:col-span-3">
<div class="grid grid-cols-1 gap-4">
<div class="">
<div class="card">
<article class="layout-hero" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/once-money-is-in-my-account-it-doesnt-go-back-zodwa-wabantu-after-being-accused-of-not-honouring-a-gig/" target="_self">
<img width="825" height="550" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20825%20550'%3E%3C/svg%3E" class="attachment-article-image size-article-image wp-post-image" alt="Zodwa Wabantu" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig.jpg 1200w" data-lazy-sizes="(max-width: 825px) 100vw, 825px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-825x550.jpg" /><noscript><img width="825" height="550" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-825x550.jpg" class="attachment-article-image size-article-image wp-post-image" alt="Zodwa Wabantu" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Zodwa-Wabantu-not-honouring-gig.jpg 1200w" sizes="(max-width: 825px) 100vw, 825px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="bg-category-entertainment">
Entertainment </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/once-money-is-in-my-account-it-doesnt-go-back-zodwa-wabantu-after-being-accused-of-not-honouring-a-gig/" target="_self">
‘Once money is in my account, it doesn’t go back’ – Zodwa Wabantu after being accused of not honouring a gig </a>
</h2>
</div>
<footer>
4 hours ago </footer>
</article>
</div>
</div>
</div>
<div class="grid grid-cols-1 gap-4">
<div class="">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/roodepoort-theatre-celebrates-45-years-honouring-stage-icons/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="The Roodepoort Theatre" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="The Roodepoort Theatre" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Roodepoort-Theatre-anniversary.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="text-category-entertainment bg-category-entertainment md:bg-transparent">
Entertainment </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/roodepoort-theatre-celebrates-45-years-honouring-stage-icons/" target="_self">
Roodepoort Theatre celebrates 45 years by honouring stage icons and those behind the scenes </a>
</h2>
</div>
<footer>
5 hours ago </footer>
</div>
</article>
</div>
</div>
<div class="">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/recipe-of-the-day-homeade-bbq-chicken-pizza/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="BBQ Pizza. Picture: Supplied" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza.jpg 1500w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="BBQ Pizza. Picture: Supplied" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/BBQ-chicken-pizza.jpg 1500w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/" class="text-category-recipes bg-category-recipes md:bg-transparent">
Recipes </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/recipe-of-the-day-homeade-bbq-chicken-pizza/" target="_self">
Recipe of the day: Homemade BBQ chicken pizza </a>
</h2>
</div>
<footer>
5 hours ago </footer>
</div>
</article>
</div>
</div>
<div class="">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/anlia-etzebeth-celebrates-baby-number-two-with-a-pastel-floral-baby-shower-pics/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Eben Etzebeth and his wife, Anlia" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Eben Etzebeth and his wife, Anlia" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Eben-Etzebeth-wife-Anlia.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="text-category-celebrity-news bg-category-celebrity-news md:bg-transparent">
Celebs And Viral </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/anlia-etzebeth-celebrates-baby-number-two-with-a-pastel-floral-baby-shower-pics/" target="_self">
Anlia Etzebeth celebrates baby number two with a pastel-floral baby shower [PICS] </a>
</h2>
</div>
<footer>
5 hours ago </footer>
</div>
</article>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 md:col-span-2 gap-4">
<div class="">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/david-tlale-to-receive-lifetime-achievement-award-at-inaugural-south-africa-fashion-awards/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="David Tlale" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="David Tlale" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/David-Tlale-Lifetime-Achievement-Award.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/" class="text-category-lifestyle bg-category-lifestyle md:bg-transparent">
Lifestyle </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/david-tlale-to-receive-lifetime-achievement-award-at-inaugural-south-africa-fashion-awards/" target="_self">
David Tlale to receive Lifetime Achievement Award at inaugural South Africa Fashion Awards </a>
</h2>
</div>
<footer>
5 hours ago </footer>
</div>
</article>
</div>
</div>
<div class="">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/watch-big-girl-big-moves-naledi-aphiwe-renovates-her-home/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Naledi Aphiwe" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Naledi Aphiwe" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/naledi-aphiwe-home-renovation.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="text-category-celebrity-news bg-category-celebrity-news md:bg-transparent">
Celebs And Viral </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/watch-big-girl-big-moves-naledi-aphiwe-renovates-her-home/" target="_self">
WATCH: ‘Big girl, big moves’ – Naledi Aphiwe renovates her home </a>
</h2>
</div>
<footer>
5 hours ago </footer>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="category-lead-two-wrapper">
<div class="grid grid-cols-1 md:grid-cols-3 md:gap-4 mb-4">
<div class="order-2 md:order-1 p-2 md:p-0">
<div class="editors-choice desktop">
<h3>EDITOR'S CHOICE</h3>
<div class="post">
<span
class="category text-category-news"
>
<a href="https://www.citizen.co.za/news/">
News </a>
</span>
<span class="title">
<a href="https://www.citizen.co.za/news/only-1145-govt-properties-in-excellent-condition/" target="_self">
Public Works’ register shows only 1.5% of government properties in excellent condition </a>
</span>
</div>
<div class="post">
<span
class="category text-category-news"
>
<a href="https://www.citizen.co.za/news/">
News </a>
</span>
<span class="title">
<a href="https://www.citizen.co.za/news/three-years-on-jagersfontein-waits/" target="_self">
Three years on, no justice for Jagersfontein victims </a>
</span>
</div>
<div class="post">
<span
class="category text-category-news"
>
<a href="https://www.citizen.co.za/news/">
News </a>
</span>
<span class="title">
<a href="https://www.citizen.co.za/news/sabc-brink-of-collapse-burdened-debt-khusela-diko/" target="_self">
SABC ‘on brink of collapse, burdened by debt’, Khusela Diko warns </a>
</span>
</div>
<div class="post">
<span
class="category text-category-news"
>
<a href="https://www.citizen.co.za/news/">
News </a>
</span>
<span class="title">
<a href="https://www.citizen.co.za/news/saps-crime-intelligence-official-security-clearance/" target="_self">
‘She is dishonest’: Saps Crime Intelligence official denied security clearance over past conviction </a>
</span>
</div>
<div class="post">
<span
class="category text-category-news"
>
<a href="https://www.citizen.co.za/news/">
News </a>
</span>
<span class="title">
<a href="https://www.citizen.co.za/news/kite-surfer-graham-howes-dirty-habits-missing-dead-latest/" target="_self">
‘Forever a legend’: Tributes pour in for ‘fearless’ kite-surfer Graham Howes [Watch] </a>
</span>
</div>
</div>
<div
id="google-ad-d-mpu1-to-close"
class="text-center mb-3 ">
<div id="google-ad-d-mpu1">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-d-mpu1');
});
</script>
</div>
</div>
<div class="more-news-ad">
<div class="ad-description">
<p>Download our app</p>
</div>
<div class="ad-button">
<a href="https://apps.apple.com/za/app/the-citizen-news/id1276577286" target="_blank">
<img decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="App Store badge" data-lazy-src="https://media.citizen.co.za/assets/img/app-store-badge.png" /><noscript><img decoding="async" src="https://media.citizen.co.za/assets/img/app-store-badge.png" alt="App Store badge" /></noscript>
</a>
<a href="https://play.google.com/store/apps/details?id=com.marfeel.cherokee.index.citizen.co.za&hl=en" target="_blank">
<img decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Google Play Store badge" data-lazy-src="https://media.citizen.co.za/assets/img/google-play-badge.png" /><noscript><img decoding="async" src="https://media.citizen.co.za/assets/img/google-play-badge.png" alt="Google Play Store badge" /></noscript>
</a>
</div>
</div>
<div class="whatsapp-ad">
<a class="whatsapp-widget" href="https://whatsapp.com/channel/0029VaC6h5cGpLHZ59q2Ei2Q" target="_blank">
<div class="widget-content">
<i class="citizenicons-whatsapp"></i>
<p class="ad-text">
Get the latest news and updates on Whatsapp </p>
</div>
<i class="citizenicons-chevron-right"></i>
</a>
</div>
<div class="newsletter-subscription-cta-wrapper">
<a class="newsletter-widget" href="/newsletter-subscription/">
<div class="widget-content">
<i class="citizenicons-envelope"></i>
<p class="ad-text">The latest news directly in your inbox</p>
</div>
<i class="citizenicons-chevron-right"></i>
</a>
</div>
<div
id="google-ad-d-mpu2-to-close"
class="text-center mb-3 ">
<div id="google-ad-d-mpu2">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-d-mpu2');
});
</script>
</div>
</div>
</div>
<div class="col-span-2 order-1 md:order-2">
<div class="category-lead-2-before-posts-wrapper">
<div
id="google-ad-m-og-mpu1-to-close"
class="text-center mb-3 ">
<div id="google-ad-m-og-mpu1">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-m-og-mpu1');
});
</script>
</div>
</div>
</div>
<div class="category-description">
<h3 class="text-category-lifestyle">KEEP UP WITH ALL THE LATEST LIFESTYLE NEWS</h3>
The Citizen’s lifestyle section covers a wide range of lifestyle topics and issues from South African and global celebrity news to fashion and food. </div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/black-coffee-come-back-anytime-portuguese-football-team-gifts-dj-with-kit/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="DJ Black Coffee" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Coffee-Portugal-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Coffee-Portugal-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Coffee-Portugal-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Coffee-Portugal-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Coffee-Portugal.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Coffee-Portugal-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Coffee-Portugal-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="DJ Black Coffee" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Coffee-Portugal-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Coffee-Portugal-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Coffee-Portugal-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Coffee-Portugal-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Coffee-Portugal.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="bg-category-entertainment">
Entertainment </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/black-coffee-come-back-anytime-portuguese-football-team-gifts-dj-with-kit/" target="_self">
‘Black Coffee, come back anytime’: Portuguese football team gifts DJ with kit </a>
</h2>
</div>
<footer>
9 hours ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/technology/malatsi-shines-light-digital-digital-government-amid-challenges/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Malatsi shines light on digital digital government amid challenges" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi.jpg 1500w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Malatsi shines light on digital digital government amid challenges" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Solly-Malatsi.jpg 1500w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/technology/" class="bg-category-technology">
Tech and Science </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/lifestyle/technology/malatsi-shines-light-digital-digital-government-amid-challenges/" target="_self">
Malatsi shines light on digital government amid challenges </a>
</h2>
</div>
<footer>
9 hours ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/deputy-minister-peace-mabe-on-tylas-second-consecutive-mtv-vma-win/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Tyla" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Tyla-wins-mtv-vma-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Tyla-wins-mtv-vma-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Tyla-wins-mtv-vma-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Tyla-wins-mtv-vma-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Tyla-wins-mtv-vma.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Tyla-wins-mtv-vma-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Tyla-wins-mtv-vma-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Tyla" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Tyla-wins-mtv-vma-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Tyla-wins-mtv-vma-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Tyla-wins-mtv-vma-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Tyla-wins-mtv-vma-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Tyla-wins-mtv-vma.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="bg-category-celebrity-news">
Celebs And Viral </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/deputy-minister-peace-mabe-on-tylas-second-consecutive-mtv-vma-win/" target="_self">
‘She has carried our music and identity’: Deputy Minister Peace Mabe on Tyla’s second consecutive MTV VMA win </a>
</h2>
</div>
<footer>
9 hours ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/musa-keys-bags-two-nods-as-blissbouy-and-j-john-dominate-20th-xitsonga-music-awards/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Musa Keys" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Musa-keys-xitshonga-music-awards-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Musa-keys-xitshonga-music-awards-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Musa-keys-xitshonga-music-awards-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Musa-keys-xitshonga-music-awards-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Musa-keys-xitshonga-music-awards.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Musa-keys-xitshonga-music-awards-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Musa-keys-xitshonga-music-awards-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Musa Keys" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Musa-keys-xitshonga-music-awards-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Musa-keys-xitshonga-music-awards-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Musa-keys-xitshonga-music-awards-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Musa-keys-xitshonga-music-awards-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Musa-keys-xitshonga-music-awards.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="bg-category-entertainment">
Entertainment </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/musa-keys-bags-two-nods-as-blissbouy-and-j-john-dominate-20th-xitsonga-music-awards/" target="_self">
Musa Keys bags two nods as BlissBouy and J John dominate 20th Xitsonga Music Awards </a>
</h2>
</div>
<footer>
12 hours ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper sponsored">
<div class="badge">SPONSORED</div>
<a href="https://www.citizen.co.za/business/tcl-showcases-latest-display-technologies-and-ai-innovations-at-ifa-2025/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="TCL showcases latest display technologies and AI innovations at IFA 2025" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-scaled.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-825x550.jpg 825w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="TCL showcases latest display technologies and AI innovations at IFA 2025" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-scaled.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/AC-1-825x550.jpg 825w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/business/" class="bg-category-business">
Business </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/business/tcl-showcases-latest-display-technologies-and-ai-innovations-at-ifa-2025/" target="_self">
TCL showcases latest display technologies and AI innovations at IFA 2025 </a>
</h2>
</div>
<footer>
1 day ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/terence-bridgett-starring-pieter-dirk-uys-tribute-show/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Terence Bridgett Pieter-Dirk Uys" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Terence-Bridgett-shows-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Terence-Bridgett-shows-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Terence-Bridgett-shows-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Terence-Bridgett-shows-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Terence-Bridgett-shows.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Terence-Bridgett-shows-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Terence-Bridgett-shows-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Terence Bridgett Pieter-Dirk Uys" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Terence-Bridgett-shows-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Terence-Bridgett-shows-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Terence-Bridgett-shows-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Terence-Bridgett-shows-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Terence-Bridgett-shows.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="bg-category-entertainment">
Entertainment </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/terence-bridgett-starring-pieter-dirk-uys-tribute-show/" target="_self">
‘Intimidating and exciting’: Terence Bridgett on starring in Pieter-Dirk Uys’ 80th birthday tribute show </a>
</h2>
</div>
<footer>
1 day ago </footer>
</article>
</div>
</div>
<div
id="google-ad-m-og-mpu2-to-close"
class="text-center mb-3 ">
<div id="google-ad-m-og-mpu2">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-m-og-mpu2');
});
</script>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/mzansi-ballet-brings-back-elvis-presley-to-joburg-after-a-decade/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Elvis Presley cast" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Elvis-Presely-cast-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Elvis-Presely-cast-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Elvis-Presely-cast-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Elvis-Presely-cast-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Elvis-Presely-cast.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Elvis-Presely-cast-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Elvis-Presely-cast-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Elvis Presley cast" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Elvis-Presely-cast-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Elvis-Presely-cast-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Elvis-Presely-cast-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Elvis-Presely-cast-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Elvis-Presely-cast.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="text-category-entertainment bg-category-entertainment md:bg-transparent">
Entertainment </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/mzansi-ballet-brings-back-elvis-presley-to-joburg-after-a-decade/" target="_self">
Mzansi Ballet brings back Elvis Presley to Joburg after a decade </a>
</h2>
</div>
<footer>
1 day ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper sponsored">
<div class="badge">SPONSORED</div>
<a href="https://www.citizen.co.za/sponsored/the-art-of-everyday-flagship-living-with-the-huawei-pura-80/" target="_self">
<img width="200" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20200%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-src="https://www.citizen.co.za/wp-content/uploads/2025/09/HUAWEI-Pura-80-Frosted-Rose-Gold.jpg" /><noscript><img width="200" height="200" src="https://www.citizen.co.za/wp-content/uploads/2025/09/HUAWEI-Pura-80-Frosted-Rose-Gold.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/sponsored/" class="text-category-sponsored bg-category-sponsored md:bg-transparent">
Sponsored </a>
</span>
<h2>
<a href="https://www.citizen.co.za/sponsored/the-art-of-everyday-flagship-living-with-the-huawei-pura-80/" target="_self">
The art of everyday flagship living with the Huawei Pura 80 </a>
</h2>
</div>
<footer>
1 day ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/international-literacy-day-sa-celebs-that-have-recently-published-childrens-books/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Salamina Mosese, Ntombi Meso and Refilwe Modiselle" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Internatioal-Literacy-Day-childrens-book-authours-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Internatioal-Literacy-Day-childrens-book-authours-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Internatioal-Literacy-Day-childrens-book-authours-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Internatioal-Literacy-Day-childrens-book-authours-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Internatioal-Literacy-Day-childrens-book-authours.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Internatioal-Literacy-Day-childrens-book-authours-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Internatioal-Literacy-Day-childrens-book-authours-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Salamina Mosese, Ntombi Meso and Refilwe Modiselle" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Internatioal-Literacy-Day-childrens-book-authours-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Internatioal-Literacy-Day-childrens-book-authours-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Internatioal-Literacy-Day-childrens-book-authours-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Internatioal-Literacy-Day-childrens-book-authours-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Internatioal-Literacy-Day-childrens-book-authours.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/" class="text-category-lifestyle bg-category-lifestyle md:bg-transparent">
Lifestyle </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/international-literacy-day-sa-celebs-that-have-recently-published-childrens-books/" target="_self">
International Literacy Day: SA celebs that have recently published children’s books </a>
</h2>
</div>
<footer>
1 day ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/technology/samsung-s25-edge-is-slimness-really-what-people-want/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Samsung S25 Edge" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge.jpg 1500w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Samsung S25 Edge" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Samsung-Galaxy-S25-Edge.jpg 1500w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/technology/" class="text-category-technology bg-category-technology md:bg-transparent">
Tech and Science </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/technology/samsung-s25-edge-is-slimness-really-what-people-want/" target="_self">
Samsung S25 Edge now in SA: Is slimness really what people want? </a>
</h2>
</div>
<footer>
1 day ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/young-stunna-as-he-treats-mum-to-a-luxury-dubai-getaway-pics/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Young Stunna’s mother" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/young-stunna-mother-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/young-stunna-mother-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/young-stunna-mother-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/young-stunna-mother-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/young-stunna-mother.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/young-stunna-mother-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/young-stunna-mother-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Young Stunna’s mother" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/young-stunna-mother-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/young-stunna-mother-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/young-stunna-mother-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/young-stunna-mother-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/young-stunna-mother.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="text-category-celebrity-news bg-category-celebrity-news md:bg-transparent">
Celebs And Viral </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/young-stunna-as-he-treats-mum-to-a-luxury-dubai-getaway-pics/" target="_self">
‘I am only 25 years old’: Proud Young Stunna as he treats mom to a luxury Dubai getaway [PICS] </a>
</h2>
</div>
<footer>
1 day ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/health/plastics-threaten-fertility/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="fertility" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic.jpg 1772w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="fertility" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Plastic.jpg 1772w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/health/" class="text-category-health bg-category-health md:bg-transparent">
Health </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/health/plastics-threaten-fertility/" target="_self">
Plastics threaten fertility: Chemicals linked to reproductive risks </a>
</h2>
</div>
<footer>
1 day ago </footer>
</div>
</article>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/chymamusique-out-of-icu-following-tragic-accident-that-claimed-five-lives/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Chymamusique" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Chymamusique-Out-of-ICU-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Chymamusique-Out-of-ICU-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Chymamusique-Out-of-ICU-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Chymamusique-Out-of-ICU-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Chymamusique-Out-of-ICU.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Chymamusique-Out-of-ICU-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Chymamusique-Out-of-ICU-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Chymamusique" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Chymamusique-Out-of-ICU-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Chymamusique-Out-of-ICU-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Chymamusique-Out-of-ICU-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Chymamusique-Out-of-ICU-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Chymamusique-Out-of-ICU.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="text-category-celebrity-news bg-category-celebrity-news md:bg-transparent">
Celebs And Viral </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/chymamusique-out-of-icu-following-tragic-accident-that-claimed-five-lives/" target="_self">
Chymamusique out of ICU following tragic accident that claimed five lives </a>
</h2>
</div>
<footer>
1 day ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/recipe-of-the-day-meat-free-monday-classic-margherita-pizza/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Meatless pizzas" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/freshlybakedmargheritapizzawithmozzarellacheesebasilleaves-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/freshlybakedmargheritapizzawithmozzarellacheesebasilleaves-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/freshlybakedmargheritapizzawithmozzarellacheesebasilleaves-825x550.jpg 825w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/freshlybakedmargheritapizzawithmozzarellacheesebasilleaves-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/freshlybakedmargheritapizzawithmozzarellacheesebasilleaves-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Meatless pizzas" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/freshlybakedmargheritapizzawithmozzarellacheesebasilleaves-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/freshlybakedmargheritapizzawithmozzarellacheesebasilleaves-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/freshlybakedmargheritapizzawithmozzarellacheesebasilleaves-825x550.jpg 825w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/" class="text-category-recipes bg-category-recipes md:bg-transparent">
Recipes </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/recipe-of-the-day-meat-free-monday-classic-margherita-pizza/" target="_self">
Recipe of the day: Meat-free Monday, Classic margherita pizza </a>
</h2>
</div>
<footer>
1 day ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/faf-de-klerk-and-wife-mine-enjoy-namibian-getaway/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Faf de Klerk and his wife, Miné in Namibia" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Faf-de-Klerk-family-getaway-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Faf-de-Klerk-family-getaway-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Faf-de-Klerk-family-getaway-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Faf-de-Klerk-family-getaway-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Faf-de-Klerk-family-getaway.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Faf-de-Klerk-family-getaway-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Faf-de-Klerk-family-getaway-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Faf de Klerk and his wife, Miné in Namibia" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Faf-de-Klerk-family-getaway-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Faf-de-Klerk-family-getaway-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Faf-de-Klerk-family-getaway-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Faf-de-Klerk-family-getaway-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Faf-de-Klerk-family-getaway.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="text-category-celebrity-news bg-category-celebrity-news md:bg-transparent">
Celebs And Viral </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/faf-de-klerk-and-wife-mine-enjoy-namibian-getaway/" target="_self">
Springbok star Faf de Klerk and wife Miné enjoy Namibian getaway ahead of baby arrival </a>
</h2>
</div>
<footer>
1 day ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/dont-worry-sa-ill-be-back-says-da-les-as-he-moves-to-the-us/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Da Les" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Da-Les-USA-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Da-Les-USA-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Da-Les-USA-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Da-Les-USA-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Da-Les-USA.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Da-Les-USA-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Da-Les-USA-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Da Les" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Da-Les-USA-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Da-Les-USA-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Da-Les-USA-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Da-Les-USA-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Da-Les-USA.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="text-category-celebrity-news bg-category-celebrity-news md:bg-transparent">
Celebs And Viral </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/dont-worry-sa-ill-be-back-says-da-les-as-he-moves-to-the-us/" target="_self">
‘Don’t worry SA, I’ll be back,’ says Da Les as he moves to the US </a>
</h2>
</div>
<footer>
1 day ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/tyla-dazzles-in-couture-on-the-red-carpet-as-she-wins-mtv-vma-best-afrobeats-award-pics/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Tyla attends the 2025 MTV Video Music Awards at UBS Arena on 7 September 2025 in Elmont, New York. Picture: Noam Galai/Getty Images for MTV" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-scaled.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-825x550.jpg 825w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Tyla attends the 2025 MTV Video Music Awards at UBS Arena on 7 September 2025 in Elmont, New York. Picture: Noam Galai/Getty Images for MTV" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-scaled.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/2234226668-825x550.jpg 825w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/" class="text-category-lifestyle bg-category-lifestyle md:bg-transparent">
Lifestyle </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/tyla-dazzles-in-couture-on-the-red-carpet-as-she-wins-mtv-vma-best-afrobeats-award-pics/" target="_self">
Tyla dazzles in couture on the red carpet as she wins MTV VMA Best Afrobeats Award [Pics] </a>
</h2>
</div>
<footer>
1 day ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/any-donation-will-help-me-stay-strong-through-treatment-says-actor-after-cancer-diagnosis/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Sabelo Gumede" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Gumede-crowdfunding-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Gumede-crowdfunding-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Gumede-crowdfunding-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Gumede-crowdfunding-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Gumede-crowdfunding.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Gumede-crowdfunding-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Gumede-crowdfunding-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Sabelo Gumede" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Gumede-crowdfunding-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Gumede-crowdfunding-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Gumede-crowdfunding-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Gumede-crowdfunding-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Gumede-crowdfunding.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/" class="text-category-lifestyle bg-category-lifestyle md:bg-transparent">
Lifestyle </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/any-donation-will-help-me-stay-strong-through-treatment-says-actor-after-cancer-diagnosis/" target="_self">
‘Any donation will help me stay strong through treatment,’ says actor after cancer diagnosis </a>
</h2>
</div>
<footer>
1 day ago </footer>
</div>
</article>
</div>
</div>
<div class="category-lead-2-after-posts-wrapper">
<div
id="google-ad-m-og-mpu3-to-close"
class="text-center mb-2 ">
<div id="google-ad-m-og-mpu3">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-m-og-mpu3');
});
</script>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="category-lead-three-wrapper">
<div class="grid grid-cols-1 md:grid-cols-4 gap-4 mb-4">
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/cassper-nyovest-begins-weight-loss-journey-after-body-shaming/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Cassper Nyovest" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming-300x200.jpeg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming-1200x800.jpeg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming-768x512.jpeg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming-456x304.jpeg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming-825x550.jpeg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming.jpeg 1500w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming-300x200.jpeg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming-300x200.jpeg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Cassper Nyovest" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming-300x200.jpeg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming-1200x800.jpeg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming-768x512.jpeg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming-456x304.jpeg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming-825x550.jpeg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/cassper-nyovest-body-shaming.jpeg 1500w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="bg-category-celebrity-news">
Celebs And Viral </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/cassper-nyovest-begins-weight-loss-journey-after-body-shaming/" target="_self">
WATCH: ‘The comments were a bit harsh’: Cassper Nyovest begins weight-loss journey after body shaming </a>
</h2>
</div>
<footer>
1 day ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/kids-pick-sa-top-toys-for-christmas/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="toys" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4.jpg 1772w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="toys" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Toy-Test-1-4.jpg 1772w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/" class="bg-category-lifestyle">
Lifestyle </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/lifestyle/kids-pick-sa-top-toys-for-christmas/" target="_self">
Kids Pick SA’s Top Toys for Christmas 2025 </a>
</h2>
</div>
<footer>
2 days ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/watch-here-are-some-of-the-looks-from-moscow-fashion-week/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="model" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Moscow-Fashion-Week-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Moscow-Fashion-Week-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Moscow-Fashion-Week-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Moscow-Fashion-Week-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Moscow-Fashion-Week.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Moscow-Fashion-Week-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Moscow-Fashion-Week-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="model" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Moscow-Fashion-Week-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Moscow-Fashion-Week-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Moscow-Fashion-Week-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Moscow-Fashion-Week-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Moscow-Fashion-Week.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/" class="bg-category-fashion-and-beauty">
Fashion And Beauty </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/watch-here-are-some-of-the-looks-from-moscow-fashion-week/" target="_self">
WATCH: Here are some of the looks from Moscow Fashion Week </a>
</h2>
</div>
<footer>
3 days ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/my-miracle-baby-rachel-kolisi-celebrates-sons-birthday/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Rachel Kolisi" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday.jpg 1500w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Rachel Kolisi" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Rachel-Kolisi-kids-birthday.jpg 1500w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="bg-category-celebrity-news">
Celebs And Viral </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/my-miracle-baby-rachel-kolisi-celebrates-sons-birthday/" target="_self">
‘My miracle baby’: Rachel Kolisi celebrates son’s birthday </a>
</h2>
</div>
<footer>
3 days ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/disoufeng-welcomes-heritage-month-with-motswako-rap-tribute-night/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Maglera Doe Boy" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Maglera-doeboy-disoufeng-soweto-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maglera-doeboy-disoufeng-soweto-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maglera-doeboy-disoufeng-soweto-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maglera-doeboy-disoufeng-soweto-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maglera-doeboy-disoufeng-soweto.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Maglera-doeboy-disoufeng-soweto-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Maglera-doeboy-disoufeng-soweto-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Maglera Doe Boy" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Maglera-doeboy-disoufeng-soweto-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maglera-doeboy-disoufeng-soweto-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maglera-doeboy-disoufeng-soweto-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maglera-doeboy-disoufeng-soweto-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maglera-doeboy-disoufeng-soweto.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="bg-category-entertainment">
Entertainment </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/disoufeng-welcomes-heritage-month-with-motswako-rap-tribute-night/" target="_self">
‘Motswako rap is not dead’: Disoufeng welcomes Heritage Month with rap tribute night </a>
</h2>
</div>
<footer>
3 days ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/patrick-mavros-iconic-african-brand/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="mavros" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-scaled.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-825x550.jpg 825w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="mavros" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-scaled.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/153A9555-825x550.jpg 825w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/" class="bg-category-fashion-and-beauty">
Fashion And Beauty </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/patrick-mavros-iconic-african-brand/" target="_self">
From Love to Luxury: How Patrick Mavros built an iconic African jewellery brand </a>
</h2>
</div>
<footer>
3 days ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/5-things-every-woman-should-know-about-their-bra/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="bra underwear" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied.jpg 1772w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="bra underwear" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bras-Supplied.jpg 1772w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/" class="bg-category-fashion-and-beauty">
Fashion And Beauty </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/5-things-every-woman-should-know-about-their-bra/" target="_self">
5 Bra Secrets every woman should know (But probably doesn’t) </a>
</h2>
</div>
<footer>
4 days ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/itumeleng-banda-supersport/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Itumeleng Banda" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Itumeleng-Banda-supersport-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Itumeleng-Banda-supersport-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Itumeleng-Banda-supersport-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Itumeleng-Banda-supersport-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Itumeleng-Banda-supersport.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Itumeleng-Banda-supersport-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Itumeleng-Banda-supersport-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Itumeleng Banda" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Itumeleng-Banda-supersport-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Itumeleng-Banda-supersport-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Itumeleng-Banda-supersport-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Itumeleng-Banda-supersport-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Itumeleng-Banda-supersport.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="bg-category-celebrity-news">
Celebs And Viral </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/itumeleng-banda-supersport/" target="_self">
‘It was always the ultimate goal’: Itumeleng Banda on joining SuperSport </a>
</h2>
</div>
<footer>
4 days ago </footer>
</article>
</div>
</div>
</div>
<div class="more-posts">
<a href="https://www.citizen.co.za/lifestyle/page/2/" >MORE ARTICLES</a> </div>
<!-- Start sidebar 'category-after-content' -->
<div class="category-after-content-wrapper">
</div>
<!-- End sidebar 'category-after-content' -->
<div class="scroll-to-top">
<a href="#">
<i class="citizenicons-circle-arrow-up"></i>
</a>
</div>
</div>
</main>
<footer data-wpr-lazyrender="1" class="main-footer">
<div class="footer-wrapper">
<div class="footer-cols">
<div>
<a href="/">
<img class="w-48 pb-4 mx-auto md:ml-0" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Citizen logo in footer" data-lazy-src="https://media.citizen.co.za/assets/img/citizen-logo.png" /><noscript><img class="w-48 pb-4 mx-auto md:ml-0" src="https://media.citizen.co.za/assets/img/citizen-logo.png" alt="Citizen logo in footer" /></noscript>
</a>
<div class="footer-socials">
<a target="_blank" href="https://www.facebook.com/TheCitizenNewsSA/">
<i class="citizenicons-facebook-f"></i>
</a>
<a target="_blank" href="https://twitter.com/TheCitizen_News">
<i class="citizenicons-x-twitter"></i>
</a>
<a target="_blank" href="https://en.wikipedia.org/wiki/The_Citizen_(South_African_newspaper)">
<i class="citizenicons-wikipedia-w"></i>
</a>
<a target="_blank" href="https://www.linkedin.com/company/citizen/">
<i class="citizenicons-linkedin"></i>
</a>
<a target="_blank" href="https://flipboard.com/@TheCitizenNews">
<i class="citizenicons-flipboard"></i>
</a>
<a target="_blank" href="https://www.instagram.com/thecitizen_news/">
<i class="citizenicons-instagram"></i>
</a>
<a target="_blank" href="https://www.youtube.com/channel/UC6W8rnMBwnzioz-3-8jH0-w">
<i class="citizenicons-youtube"></i>
</a>
<a target="_blank" href="https://whatsapp.com/channel/0029VaC6h5cGpLHZ59q2Ei2Q">
<i class="citizenicons-whatsapp"></i>
</a>
<a target="_blank" href="https://www.tiktok.com/@thecitizen_news?lang=en">
<i class="citizenicons-tiktok"></i>
</a>
</div>
</div>
<div class="column-one">
<div class="textwidget custom-html-widget"><div class="row">
<div class="col-5">
<a target=”_blank” href="https://www.iabsa.net/home/"><img class="img-fluid" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="IAB SOUTH AFRICA logo" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2021/04/The-Citizen-IAB-SOUTH-AFRICA.png" /><noscript><img class="img-fluid" src="https://media.citizen.co.za/wp-content/uploads/2021/04/The-Citizen-IAB-SOUTH-AFRICA.png" alt="IAB SOUTH AFRICA logo" /></noscript></a>
<a target="_blank" href="https://presscouncil.org.za/" rel="nofollow"><img class="img-fluid mt-3" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Press Council logo" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2021/04/The-Citizen-Press-Council.png" /><noscript><img class="img-fluid mt-3" src="https://media.citizen.co.za/wp-content/uploads/2021/04/The-Citizen-Press-Council.png" alt="Press Council logo" /></noscript></a>
</div>
</div></div><amp-embed width=100 height=100
type='taboola'
layout='responsive'
data-publisher='caxtondigital-thecitizen'
data-mode='alternating-thumbnails-a'
data-placement='Below Article Monetisation Feed'
data-target_type='mix'
data-article='auto'>
</amp-embed> </div>
<div class="column-two">
<div class="menu-footer-about-menu-container"><ul id="menu-footer-about-menu" class="menu"><li id="menu-item-2464221" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2464221"><a href="https://www.citizen.co.za/about-us/">About us</a></li>
<li id="menu-item-2464224" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2464224"><a href="https://www.citizen.co.za/contact-us/">Contact us</a></li>
<li id="menu-item-3411779" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3411779"><a href="https://www.citizen.co.za/authors/">Our team</a></li>
<li id="menu-item-3384884" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3384884"><a href="https://www.citizen.co.za/newsletter-subscription/">Newsletters</a></li>
<li id="menu-item-2464223" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2464223"><a href="https://www.citizen.co.za/code-of-conduct/">Code of conduct</a></li>
<li id="menu-item-2464222" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2464222"><a href="https://www.citizen.co.za/jobs-at-the-citizen/">Jobs at The Citizen</a></li>
<li id="menu-item-2464225" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2464225"><a href="https://www.citizen.co.za/advertising/">Advertising rate card</a></li>
<li id="menu-item-3962559" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3962559"><a href="https://www.citizen.co.za/faqs/">FAQs</a></li>
<li id="menu-item-3584578" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-3584578"><a rel="privacy-policy" href="https://www.citizen.co.za/privacy-policy/">Privacy policy</a></li>
<li id="menu-item-3584577" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3584577"><a href="https://www.citizen.co.za/terms-and-conditions/">Terms and conditions</a></li>
</ul></div> </div>
<div class="column-three">
<div class="menu-footer-col-3-menu-container"><ul id="menu-footer-col-3-menu" class="menu"><li id="menu-item-2464226" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464226"><a href="https://www.citizen.co.za/news/">NEWS</a></li>
<li id="menu-item-2464228" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464228"><a href="https://www.citizen.co.za/business/">BUSINESS</a></li>
<li id="menu-item-2464229" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464229"><a href="https://www.citizen.co.za/sport/">SPORT</a></li>
<li id="menu-item-2464230" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464230"><a href="https://www.citizen.co.za/sport/soccer/">PHAKAAATHI</a></li>
<li id="menu-item-3411742" class="menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item menu-item-3411742"><a href="https://www.citizen.co.za/lifestyle/" aria-current="page">LIFESTYLE</a></li>
</ul></div> </div>
<div class="column-four">
<div class="menu-footer-col-4-menu-container"><ul id="menu-footer-col-4-menu" class="menu"><li id="menu-item-3411744" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3411744"><a href="https://www.citizen.co.za/entertainment/">ENTERTAINMENT</a></li>
<li id="menu-item-2464232" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464232"><a href="https://www.citizen.co.za/travel/">TRAVEL</a></li>
<li id="menu-item-2464233" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464233"><a href="https://www.citizen.co.za/multimedia/">MULTIMEDIA</a></li>
<li id="menu-item-2464234" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464234"><a href="https://www.citizen.co.za/motoring/">MOTORING</a></li>
<li id="menu-item-2464235" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464235"><a href="https://www.citizen.co.za/sport/horses/">HORSES</a></li>
<li id="menu-item-3411774" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3411774"><a href="https://www.citizen.co.za/competitions/">COMPETITIONS</a></li>
</ul></div> </div>
</div>
<div class="w-full py-4 mx-auto">
<hr class="border-t border-citizen-dark opacity-20 py-4" />
<p class="text-sm text-citizen-dark text-center">
<i class="citizenicons-copyright"></i>
2025 The Citizen. All Rights Reserved.
</p>
</div>
</div>
</footer>
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/citizen-2023\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<!-- IO Integration -->
<script async src="https://cdn.onthe.io/io.js/NgBcKVJBj50g"></script><script>
window._io_config = window._io_config || {}; window._io_config["0.2.0"] = window._io_config["0.2.0"] || []; window._io_config["0.2.0"]
.push( {
page_url: "https://www.citizen.co.za/lifestyle/",
page_url_canonical: "https://www.citizen.co.za/lifestyle/",
page_title: "Lifestyle",
page_type: "default",
page_language: "en",
user_status: "anonymous",
} );
</script>
<!-- IO Integration -->
<script type="text/javascript" src="https://www.citizen.co.za/wp-content/themes/citizen-2023/dist/assets/main-Dw5wzh88.js?ver=2.0" id="main-js" data-rocket-defer defer></script>
<script type="text/javascript" id="sign-in-js-extra">
/* <![CDATA[ */
var citizen_premium = {"nonce":"0fb435886a","ajaxurl":"https:\/\/www.citizen.co.za\/wp-admin\/admin-ajax.php","redirect_url":"https:\/\/premium.citizen.co.za\/my-account"};
/* ]]> */
</script>
<script type="text/javascript" src="https://www.citizen.co.za/wp-content/themes/citizen-2023/assets/js/sign-in.js?ver=2.1" id="sign-in-js" data-rocket-defer defer></script>
<script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload,iframe[data-lazy-src]",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue}
if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue}
images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1}
if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://www.citizen.co.za/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script><script>function lazyLoadThumb(e,alt,l){var t='<img data-lazy-src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"><noscript><img src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"></noscript>',a='<button class="play" aria-label="Play Youtube video"></button>';if(l){t=t.replace('data-lazy-','');t=t.replace('loading="lazy"','');t=t.replace(/<noscript>.*?<\/noscript>/g,'');}t=t.replace('alt=""','alt="'+alt+'"');return t.replace("ID",e)+a}function lazyLoadYoutubeIframe(){var e=document.createElement("iframe"),t="ID?autoplay=1";t+=0===this.parentNode.dataset.query.length?"":"&"+this.parentNode.dataset.query;e.setAttribute("src",t.replace("ID",this.parentNode.dataset.src)),e.setAttribute("frameborder","0"),e.setAttribute("allowfullscreen","1"),e.setAttribute("allow","accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"),this.parentNode.parentNode.replaceChild(e,this.parentNode)}document.addEventListener("DOMContentLoaded",function(){var exclusions=["elections-map-2024.png"];var e,t,p,u,l,a=document.getElementsByClassName("rll-youtube-player");for(t=0;t<a.length;t++)(e=document.createElement("div")),(u='https://i.ytimg.com/vi/ID/hqdefault.jpg'),(u=u.replace('ID',a[t].dataset.id)),(l=exclusions.some(exclusion=>u.includes(exclusion))),e.setAttribute("data-id",a[t].dataset.id),e.setAttribute("data-query",a[t].dataset.query),e.setAttribute("data-src",a[t].dataset.src),(e.innerHTML=lazyLoadThumb(a[t].dataset.id,a[t].dataset.alt,l)),a[t].appendChild(e),(p=e.querySelector(".play")),(p.onclick=lazyLoadYoutubeIframe)});</script></div>
</body>
</html>
<!-- Cached for great performance - Debug: cached@1757443743 -->